-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
37 lines (34 loc) · 1.6 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
from setuptools import setup, find_packages
from versioneer import find_version
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
with open('requirements.txt') as req:
require = req.readlines()
install_requires = [r.strip() for r in require]
setup(
name='hydrobr',
description='HydroBr is an open-source package to work with Brazilian hydrometeorological time series.',
long_description=long_description,
long_description_content_type="text/markdown",
version=find_version('hydrobr', '__init__.py'),
keywords='timeseries flow precipitation stages',
author='Wallisson Moreira de Carvalho',
url='https://github.com/wallissoncarvalho/hydrobr',
download_url='https://github.com/wallissoncarvalho/hydrobr/archive/{}.tar.gz'.format(find_version('hydrobr',
'__init__.py')),
author_email='[email protected]',
license='BSD 3-Clause License',
packages=find_packages(),
include_package_data=True,
classifiers=['Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering",
],
install_requires=install_requires
)