-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
54 lines (51 loc) · 1.4 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
"""
EMMA: Ecotope map maker based on abiotic characteristics
Authors: Soesja Brunink & Gijs G. Hendrickx
"""
from setuptools import setup, find_packages
with open('README.md', mode='r') as f:
long_description = f.read()
setup(
name='emma',
version='1.1',
authors=[
'Gijs G. Hendrickx',
'Soesja Brunink',
],
author_email='[email protected]',
description='Ecotope-Map Maker based on Abiotics',
long_description=long_description,
long_description_content_type='text/markdown',
download_url='https://github.com/ghendrickx/EMMA',
packages=find_packages(exclude='tests'),
license='Apache-2.0',
keywords=[
'Building with Nature',
'Ecotope mapping',
'Estuarine ecosystems',
'Hydrodynamic model'
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
install_requires=[
'netCDF4',
'numpy',
'shapely',
'typer',
'xarray',
],
extras_require={
'examples': ['matplotlib'],
'develop': ['matplotlib', 'pytest', 'pytest-cov', 'pylint'],
'testing': ['pytest', 'pytest-cov', 'pylint'],
},
entry_points={
'console_scripts': [
'emma = src.console:app_emma',
]
},
python_requires='>=3.9',
)