forked from davidraleigh/geometry-client-python
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
40 lines (35 loc) · 1.04 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
38
39
40
import sys
import os
from setuptools import setup, find_packages
src_path = os.path.dirname(os.path.abspath(sys.argv[0]))
old_path = os.getcwd()
os.chdir(src_path)
sys.path.insert(0, src_path)
kwargs = {
'name': 'epl.geometry',
'description': 'geometry library for gRPC remote geometry functions',
'url': 'https://github.com/geo-grpc/geometry-client-python',
'long_description': "geometry library for gRPC remote geometry functions",
'author': 'David Raleigh',
'author_email': '[email protected]',
'license': 'Apache 2.0',
'version': '1.0.3',
'namespace_package': ['epl'],
'python_requires': '>3.5.2',
'packages': ['epl.geometry'],
'install_requires': [
'grpcio-tools',
'protobuf',
'shapely',
'epl.protobuf.v1'
],
'zip_safe': False
}
clssfrs = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
]
kwargs['classifiers'] = clssfrs
setup(**kwargs)