-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (29 loc) · 932 Bytes
/
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
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)
# https://blog.shazam.com/python-microlibs-5be9461ad979
kwargs = {
'name': 'epl',
'description': 'Echo Park Labs Stac ',
'long_description': open('README.md').read(),
'author': 'Echo Park Labs',
'author_email': '[email protected]',
'url': 'https://github.com/geo-grpc/naip-stac-grpc',
'packages': find_packages(),
'version': open('VERSION').read(),
'zip_safe': False
}
clssfrs = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
]
kwargs['classifiers'] = clssfrs
setup(**kwargs)