-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
50 lines (39 loc) · 1.25 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
41
42
43
44
45
46
47
48
49
50
# instructions for releasing this code to pypi:
#
# vim rpcm/__about__.py # update version number
# python setup.py sdist bdist_wheel
# python -m twine upload dist/rpcm-XXX.tar.gz
# rm -r build dist rpcm.egg-info
import os
from codecs import open
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
package = "rpcm"
about = {}
with open(os.path.join(here, package, "__about__.py"), "r", "utf-8") as f:
exec(f.read(), about)
def readme():
with open(os.path.join(here, 'README.md'), 'r', 'utf-8') as f:
return f.read()
requirements = ['numpy',
'pyproj',
'geojson',
'rasterio[s3]>=1.2',
'srtm4>=1.0.2']
extras_require = {'test': ['pytest']}
setup(name=about["__title__"],
version=about["__version__"],
description=about["__description__"],
long_description=readme(),
long_description_content_type='text/markdown',
url=about["__url__"],
author=about["__author__"],
author_email=about["__author_email__"],
packages=[package],
install_requires=requirements,
extras_require=extras_require,
python_requires=">=3",
entry_points="""
[console_scripts]
rpcm=rpcm.cli:main
""")