-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
45 lines (41 loc) · 1.17 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
from setuptools import setup
with open("README.md", "r") as fp:
LONG_DESCRIPTION = fp.read()
REQUIREMENTS = [
"numpy",
"pandas",
"attrs",
"matplotlib",
"geopandas",
"pyhdf",
"pyorbital",
"pyspectral",
"netCDF4",
"diskcache",
"s3fs",
]
setup(
name="StratoPy",
version="0.1.1",
description=(
"Python library designed to easily manipulate CloudSat "
"and GOES-R data and generate labeled images containing cloud types."
),
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
install_requires=REQUIREMENTS,
author="Paula Romero, Georgynio Rosales, Jose Robledo, Julian Villa",
author_email="paula.romero@mi.unc.edu.ar",
url="https://github.com/paula-rj/StratoPy",
py_modules=None,
packages=["stratopy"],
include_package_data=True,
license="The MIT License",
keywords=["stratopy", "clouds"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.9",
],
)