-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·37 lines (33 loc) · 1.33 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/python
from setuptools import setup, find_packages
# Import the module version
from grpc_api_client import __version__
with open('requirements-test.txt', 'r') as f:
tests_require = [x.rstrip() for x in f.readlines()]
with open('requirements.txt', 'r') as f:
install_requires = [x.rstrip() for x in f.readlines()]
# Run the setup
setup(
name = 'grpc_api_client',
version = __version__,
description = 'Python bindings for interacting with a gRPC API server.',
long_description = open('DESCRIPTION.rst').read(),
author = 'David Taylor',
author_email = '[email protected]',
url = 'http://github.com/djtaylor/python-grpc-api-client',
license = 'GPLv3',
install_requires = install_requires,
test_suite = 'nose.collector',
tests_require = tests_require,
packages = find_packages(),
keywords = 'grpc rpc api',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)