-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
72 lines (67 loc) · 1.78 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="stif",
version="1.0.1",
author="Johannes Kopton",
author_email="[email protected]",
description=("Space-Time Interpolation and Forecasting"),
keywords="geostatistics kriging variogram spatio-temporal",
url="https://github.com/johanneskopton/stif",
packages=["stif"],
long_description=read("README.md"),
long_description_content_type="text/markdown",
license='MIT',
license_files=('LICENSE',),
classifiers=[
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Framework :: tox",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
],
python_requires=">=3.9",
install_requires=[
"numpy>=1.19,<2.0",
"matplotlib",
"pandas",
"scikit-learn",
"numba>=0.54,<=0.60",
"scipy",
],
extras_require={
"tensorflow": [
"tensorflow",
"keras",
],
"geo": [
"geopandas",
"shapely",
"rasterio",
],
"interactive": [
"ipykernel",
],
"dev": [
"build",
"pytest",
"pytest-cov",
"pytest-html",
"genbadge[all]",
"flake8",
"flake8-html",
"autopep8",
"pre-commit",
"sphinx",
"myst-parser",
"pydata-sphinx-theme",
"tox",
"twine",
],
},
)