-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (35 loc) · 959 Bytes
/
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
reqs = [
"numpy==1.22.3",
"matplotlib==3.5.2",
"pandas==1.4.3",
"scikit-learn==1.0.2",
"scipy==1.8.0",
"xlrd==1.2.0",
"yattag==1.14",
"pillow==9.2.0",
"pytest==7.1.2",
]
setuptools.setup(
name="swot-eo-safeh2o",
version="3.0.1",
author="SafeH2O",
author_email="[email protected]",
description="SWOT EO Project",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/safeh2o/swot-eo",
project_urls={
"Bug Tracker": "https://github.com/safeh2o/swot-eo/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=["swoteo"],
python_requires=">=3.10",
install_requires=reqs,
)