-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
44 lines (41 loc) · 1.42 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
"""geokube framework"""
import setuptools
from distutils.util import convert_path
main_ns = {}
ver_path = convert_path("geokube/version.py")
with open(ver_path) as ver_file:
exec(ver_file.read(), main_ns)
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="geokube",
version=main_ns["__version__"],
author="geokube Contributors",
author_email="[email protected]",
description="a Python package based on xarray for GeoScience Data Analysis",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/CMCC-Foundation/geokube",
packages=setuptools.find_packages(),
install_requires=[line.strip() for line in open("requirements.txt").readlines()],
#install_requires=[
# "shapely",
# "metpy",
# "plotly",
# "pyarrow",
# "rioxarray",
#],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
],
python_requires=">=3.7",
license="Apache License, Version 2.0",
package_data={"geokube": ["static/css/*.css", "static/html/*.html"]},
)