-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 749 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 749 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
from setuptools import setup
from cryptic_ecoffs import __version__
setup(
name='CRyPTIC ECOFF ECV study',
version=__version__,
author='Philip W Fowler',
author_email="philip.fowler@ndm.ox.ac.uk",
description="Data and code to reproduce the figures and tables in the CRyPTIC ECOFF/ECV paper",
url="https://github.com/oxfordmmm/cryptic-ecoffs",
packages=['cryptic_ecoffs'],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"],
python_requires='>=3.7',
install_requires=[
"numpy",
"matplotlib",
"pandas",
"scipy",
'geopandas',
'shapely',
'jupyterlab'
],
license="TBD",
zip_safe=False
)