-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (33 loc) · 910 Bytes
/
setup.py
File metadata and controls
39 lines (33 loc) · 910 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
from setuptools import setup, find_packages
def readme():
with open("README.md") as f:
return f.read()
install_requires = [
"statsmodels==0.13.1",
"geopandas==0.10.2",
"geobootstrap==0.11",
"dask_geopandas==0.2.0",
"tobler==0.8.2",
"astropy",
]
extra_require = [
"matplotlib==3.5.1",
"seaborn==0.11.2",
"mapclassify==2.4.3",
]
setup(
name="coss",
version="0.12.1",
description="Python tools for spatial interpolation",
long_description=(readme()),
long_description_content_type="text/markdown",
url="https://github.com/tastatham/coss",
author="Thomas Statham",
author_email="tastatham@gmail.com",
keywords="spatial, interpolation, support, areal",
license="MIT",
packages=find_packages(exclude=["tests"]),
install_requires=install_requires,
extra_require=extra_require,
include_package_data=False,
)