-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
61 lines (51 loc) · 1.65 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
52
53
54
55
56
57
58
59
60
61
import os
from setuptools import find_packages, setup
readme = open('README.rst').read()
history = open('CHANGES.rst').read()
requirements = open('requirements.txt').read()
docs_require = []
tests_require = []
extras_require = {
}
extras_require['all'] = [req for exts, reqs in extras_require.items() for req in reqs]
setup_requires = [
'pytest-runner>=5.2',
]
install_requires = requirements
packages = find_packages()
g = {}
with open(os.path.join('datacube_classification', 'version.py'), 'rt') as fp:
exec(fp.read(), g)
version = g['__version__']
setup(
name='datacube_classification',
version=version,
description=__doc__,
long_description=readme + '\n\n' + history,
long_description_content_type='text/markdown',
keywords=['datacube', 'eo classification', 'time series'],
license='MIT',
author='INPE',
packages=packages,
zip_safe=False,
include_package_data=True,
platforms='any',
extras_require=extras_require,
install_requires=install_requires,
setup_requires=setup_requires,
tests_require=tests_require,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Console :: Curses ',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
)