-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
22 lines (20 loc) · 828 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='camels', # Required
version='0.0.8', # Required
description='Interface to the CAMELS dataset.',
long_description=long_description,
long_description_content_type='text/markdown', # Optional (see note above)
url='https://github.com/simonpf/camels', # Optional
author='Simon Pfreundschuh', # Optional
author_email='simon.pfreundschuh@chalmers.se', # Optional
install_requires=["appdirs", "numpy", "pandas", "matplotlib"],
packages=["camels"],
python_requires='>=3.6',
project_urls={ # Optional
'Source': 'https://github.com/simonpf/camels/',
})