forked from muskanmahajan37/radiant-mlhub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
58 lines (56 loc) · 1.89 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="radiant_mlhub",
version="0.5.1",
author="Radiant Earth Foundation",
author_email="[email protected]",
license='Apache License 2.0',
license_file='LICENSE',
description="A Python client for Radiant MLHub",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/radiantearth/radiant-mlhub",
packages=setuptools.find_packages(),
package_data={
"": ["py.typed"]
},
platforms='Platform Independent',
entry_points={
'console_scripts': [
'mlhub=radiant_mlhub.cli:mlhub'
]
},
install_requires=[
'click>=7.1.2,<9.0.0',
'pydantic~=1.9',
'pystac~=1.4',
'python-dateutil~=2.8',
'requests~=2.27',
'shapely~=1.8',
'tqdm~=4.64'
],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"Natural Language :: English",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
],
project_urls={
'Documentation': 'https://radiant-mlhub.readthedocs.io/',
'Issue Tracker': 'https://github.com/radiantearth/radiant-mlhub/issues',
'Radiant MLHub': 'https://mlhub.earth',
},
python_requires='>=3.8',
)