-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
138 lines (125 loc) · 3.93 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#!/usr/bin/env python
#
# This file is part of Brazil Data Cube Collection Builder.
# Copyright (C) 2022 INPE.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/gpl-3.0.html>.
#
import os
from setuptools import find_packages, setup
readme = open('README.rst').read()
history = open('CHANGES.rst').read()
docs_require = [
'Sphinx>=2.1',
'sphinx_rtd_theme',
'sphinx-copybutton',
]
tests_require = [
'check-manifest>=0.40',
'coverage>=4.5',
'coveralls>=1.8',
'pydocstyle>=4.0',
'pytest>=5.0.0,<6.0.0',
'pytest-cov>=2.8',
'pytest-pep8>=1.0',
'isort>4.3',
]
extras_require = {
'docs': docs_require,
'tests': tests_require,
'gdal': [
'GDAL>=2.3',
],
'amqp': [
'amqp>=5.0',
]
}
extras_require['all'] = [req for exts, reqs in extras_require.items() for req in reqs]
setup_requires = [
'pytest-runner>=5.2',
]
install_requires = [
'boto3>=1.11',
'Flask>=1.1,<2.3',
'Flask-SQLAlchemy<3',
'marshmallow-sqlalchemy>=0.19.0,<0.29',
'rasterio>=1.3',
'rio-cogeo==3.0.2',
'numpy>=1.18',
'numpngw>=0.0.8',
'SQLAlchemy[postgresql_psycopg2binary]>=1.3,<1.4',
'bdc-collectors @ git+https://github.com/brazil-data-cube/bdc-collectors.git@v1.0.3#egg=bdc-collectors',
'bdc-catalog @ git+https://github.com/brazil-data-cube/bdc-catalog.git@v1.0.2#egg=bdc-catalog',
'celery>=5.2,<6',
'python-dateutil>=2,<3',
'shapely>=1.7,<2',
# Build Error Fix
"pydantic<2",
'tifffile==2021.11.2',
'imageio==2.10.3',
'MarkupSafe==2.0.1',
'itsdangerous==2.0.1',
'Werkzeug==2.1.2',
'GeoAlchemy2==0.11.1'
]
packages = find_packages()
g = {}
with open(os.path.join('bdc_collection_builder', 'version.py'), 'rt') as fp:
exec(fp.read(), g)
version = g['__version__']
setup(
name='bdc-collection-builder',
version=version,
description=__doc__,
long_description=readme + '\n\n' + history,
keywords='Brazil Data Cube Collection Builder Module',
license='GPLv3',
author='INPE',
author_email='brazildatacube@dpi.inpe.br',
url='https://github.com/brazil-data-cube/bdc-collection-builder',
packages=packages,
zip_safe=False,
include_package_data=True,
platforms='any',
entry_points={
'console_scripts': [
'bdc-collection-builder = bdc_collection_builder.cli:cli'
],
'bdc_db.alembic': [
'bdc_collection_builder = bdc_collection_builder:alembic'
],
'bdc_db.models': [
'celery = celery.backends.database.models',
'bdc_collection_builder = bdc_collection_builder.collections.models',
],
'bdc_db.namespaces': [
'bdc_collection_builder = bdc_collection_builder.config:Config.ACTIVITIES_SCHEMA'
],
},
extras_require=extras_require,
install_requires=install_requires,
setup_requires=setup_requires,
tests_require=tests_require,
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Web Environment',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GPL v3 License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)