-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathsetup.tmpl
More file actions
21 lines (20 loc) · 778 Bytes
/
setup.tmpl
File metadata and controls
21 lines (20 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(
name='getgauge',
packages=['getgauge', 'getgauge/messages'],
version='{0}',
description='Enables Python support for Gauge',
author='Gauge Team',
author_email='getgauge@googlegroups.com',
url='https://github.com/getgauge/gauge-python',
download_url='https://github.com/getgauge/gauge-python/archive/v{0}.zip',
keywords=['testing', 'gauge', 'gauge-python', 'getgauge', 'automation'],
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
],
install_requires=['redBaron', 'debugpy', 'grpcio>=1.39.0', 'protobuf>=3.5.2'],
)