-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (35 loc) · 997 Bytes
/
setup.py
File metadata and controls
40 lines (35 loc) · 997 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
39
40
from setuptools import find_namespace_packages, setup
test_requirements = [
"pytest",
"pytest-subtests",
"coverage",
"xarray",
"netCDF4",
"h5netcdf",
]
develop_requirements = test_requirements + ["pre-commit"]
extras_requires = {
"test": test_requirements,
"develop": develop_requirements,
}
requirements = ["dacite", "numpy", "pyyaml", "mpi4py"]
setup(
author="NOAA/GFDL",
python_requires=">=3.11",
classifiers=[
"Development Status :: 1 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
],
install_requires=requirements,
extras_require=extras_requires,
name="pyfms",
license="",
packages=find_namespace_packages(include=["pyfms", "pyfms.*"]),
include_package_data=True,
url="https://github.com/NOAA-GFDL/pyFMS.git",
version="2024.12.0",
zip_safe=False,
)