forked from pySTEPS/pysteps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (53 loc) · 1.76 KB
/
setup.py
File metadata and controls
58 lines (53 loc) · 1.76 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
# -*- coding: utf-8 -*-
import sys
from setuptools import find_packages, setup
from setuptools.extension import Extension
try:
import numpy
except ImportError:
raise RuntimeError(
"Numpy required for running the package installation\n"
+ "Try installing it with:\n"
+ "$> pip install numpy"
)
requirements = [
"numpy",
"jsmin",
"scipy",
"matplotlib",
"jsonschema",
]
setup(
name="pysteps",
version="1.18.1",
author="PySteps developers",
packages=find_packages(),
license="LICENSE",
include_package_data=True,
description="Python framework for short-term ensemble prediction systems",
long_description=open("README.rst").read(),
long_description_content_type="text/x-rst",
url="https://pysteps.github.io/",
project_urls={
"Source": "https://github.com/pySTEPS/pysteps",
"Issues": "https://github.com/pySTEPS/pysteps/issues",
"CI": "https://github.com/pySTEPS/pysteps/actions",
"Changelog": "https://github.com/pySTEPS/pysteps/releases",
"Documentation": "https://pysteps.readthedocs.io",
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: Hydrology",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
],
setup_requires=requirements,
install_requires=requirements,
)