forked from TropD/pytropd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (27 loc) · 945 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
#!/usr/bin/env python
# PyTropD installation script
from setuptools import setup, find_packages
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md")) as f:
long_description = f.read()
setup(
name="pytropd",
version="2.02",
description="Calculation of metrics of tropical width",
long_description=long_description,
license="GPL-3",
author="Alison Ming, Paul William Staten, Samuel Smith",
author_email="admg26@gmail.com",
url="https://tropd.github.io/pytropd/index.html",
requires=["numpy", "matplotlib", "scipy"],
install_requires=["numpy>=1.19", "scipy>=1.5"],
python_requires=">=3.6",
packages=find_packages(),
include_package_data=True,
classifiers=["Programming Language :: Python :: 3"],
package_data={
"pytropd/ValidationData": ["*.nc"],
"pytropd/ValidationMetrics": ["*.nc"],
},
)