-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
38 lines (36 loc) · 1.49 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
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
#long_description = (this_directory / "README.md").read_text()
with open(this_directory / "README.md", encoding="utf-8") as f:
long_description = f.read()
setup( name='NEOPRENE',
packages = find_packages(),
license = "GPLv3",
version='1.1',
description='🌎 Scripts and information to synthetic generation of precipitation based on Point Processes.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Javier Diez-Sierra <javier.diez@unican.es>, Salvador Navas <salvador.navas@unican.es>, Manuel del Jesus <manuel.deljesus@unican.es>',
author_email='javier.diez@unican.es, salvador.navas@unican.es, manuel.deljesus@unican.es',
maintainer = 'Manuel del Jesus',
maintainer_email = 'manuel.deljesus@unican.es',
url = 'https://github.com/IHCantabria/NEOPRENE',
include_package_data=True,
#package_data={'': ['notebooks/*.ipynb']},
#data_files=[("notebooks",["*"])],
python_requires='>=3.10, <4',
install_requires=[
'numpy',
'pandas',
'scipy',
'datetime',
'matplotlib',
'pyyaml',
'haversine',
'tqdm',
'pyshp',
'shapely',
],
extras_require={'plotting': ['matplotlib>=3.8.0', 'jupyter','jupyterlab']}
)