forked from safeh2o/swot-eo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 988 Bytes
/
Copy pathsetup.py
File metadata and controls
38 lines (35 loc) · 988 Bytes
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
reqs = [
"numpy<=1.20",
"matplotlib<=3.4.1",
"pandas<=1.2.4",
"scikit-learn<=1.0.2",
"scipy<=1.8.0",
"xlrd<=1.2.0",
"yattag<=1.14",
"pillow<=8.2.0",
"pytest<=6.2.3",
]
setuptools.setup(
name="swot-eo-safeh2o",
version="2.0.1",
author="SafeH2O",
author_email="support@safeh2o.app",
description="SWOT EO Project",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/safeh2o/swot_eo_python_analysis",
project_urls={
"Bug Tracker": "https://github.com/safeh2o/swot_eo_python_analysis/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=["swoteo"],
python_requires=">=3.6",
install_requires=reqs,
)