-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (45 loc) · 1.53 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
51
import os
import setuptools
# get path of script
script_path = os.path.dirname(os.path.abspath(__file__))
# get long description from README
with open(os.path.join(script_path, "README.md"), "r") as f:
long_description = f.read()
# get requirements
with open(os.path.join(script_path, 'requirements.txt'), "r") as f:
install_requires = []
for line in f:
pkgname = line.partition('#')[0].rstrip()
if pkgname is not '':
install_requires.append(pkgname)
# get package meta data
with open(os.path.join(script_path, 'wstm', 'about.py')) as f:
about = {}
exec(f.read(), about)
setuptools.setup(
name=about['__title__'],
version=about['__version__'],
author=about['__author__'],
author_email=about['__email__'],
description=about['__summary__'],
long_description=long_description,
long_description_content_type="text/markdown",
url=about['__uri__'],
project_urls={
'Documentation': 'N/A',
'GitHub': 'N/A',
},
packages=setuptools.find_packages(),
install_requires=install_requires,
classifiers=(
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Machine Learning :: GIS",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Development Status :: 5 - Production",
),
python_requires='>=3.5',
license=about['__license__'],
include_package_data=True,
)