-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 1.21 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
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='SIMPCCe',
packages = find_packages(),
license = "GPLv3",
version='0.0.1',
description='🌎 Herramientas para la aplicación de la Guía de Aportaciones Mínimas a Embalses',
long_description=long_description,
long_description_content_type='text/markdown',
author='Salvador Navas <[email protected]>, Manuel del Jesus <[email protected]>',
author_email='[email protected], [email protected]',
maintainer = 'Salvador Navas',
maintainer_email = '[email protected]',
url = 'https://github.com/IHCantabria/SIMPCCe',
include_package_data = True,
python_requires='>=3.7, <4',
install_requires=[
'numpy',
'pandas',
'scipy',
'datetime',
'matplotlib',
'pyyaml',
],
extras_require={'plotting': ['matplotlib>=2.2.0']}
)