-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
48 lines (44 loc) · 1.37 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
import pathlib
from setuptools import setup, find_packages
HERE = pathlib.Path(__file__).parent.resolve()
README = (HERE / "README.md").read_text()
setup(
name = 'MGP_SDK',
version = '1.3.2',
license='MIT',
description = 'SDK for interacting with Maxar Geospatial Platform',
long_description=README,
long_description_content_type="text/markdown",
author = 'MDS Marianas Team',
author_email = 'DL-GCS-Marianas@maxar.com',
project_urls = {
'Documentation': 'https://maxar-geospatial-platform.readthedocs.io/en/latest/',
'Source': 'https://github.com/Maxar-Corp/maxar-geospatial-platform'
},
keywords = ['OGC', 'WMS', 'WFS', 'WMTS', 'WCS', 'MAXAR', 'IMAGERY', 'GIS'],
python_requires= '>=3.8',
install_requires=[
'pyproj',
'shapely',
'requests',
'ipython',
'pillow',
'click',
'beautifulsoup4',
'lxml',
'matplotlib'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
entry_points='''
[console_scripts]
mgp = MGP_SDK.cli_commands.cli_commands:cli
'''
)