-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 1.14 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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='geoCosiCorr3D',
version='2.1',
author="Saif Aati",
author_email="[email protected], [email protected]",
description="Geospatial COSI-Corr 3D",
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/SaifAati/geoCosiCorr3D.git',
python_requires='>=3.5',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
packages=['geoCosiCorr3D',
'geoCosiCorr3D.geoOptimization',
'geoCosiCorr3D.geoRFM',
'geoCosiCorr3D.geoRSM',
'geoCosiCorr3D.geoTiePoints',
'geoCosiCorr3D.geoOrthoResampling',
'geoCosiCorr3D.geoImageCorrelation',
'geoCosiCorr3D.geoThreeDD',
'geoCosiCorr3D.geoErrorsWarning',
'geoCosiCorr3D.lib'],
)