Skip to content

Commit

Permalink
Ready to publish
Browse files Browse the repository at this point in the history
	new file:   requirements.txt
	new file:   setup.py
  • Loading branch information
dalmo1991 committed Nov 20, 2021
1 parent c0f5ba0 commit 401b8c9
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
numpy>=1.20.*
pandas>=1.2.*
scipy>=1.6.*
25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import setuptools
import os

setuptools.setup(
name='hydroanalysis',
version='1.0.0',
author='Marco Dal Molin',
author_email='marco.dalmolin.1991@gmail.com',
description='Framework for calculating hydrological indices',
long_description=open(os.path.join(os.path.dirname(__file__),
"README.md")).read(),
long_description_content_type='text/markdown',
url='https://hydroanalysis.readthedocs.io/en/latest/',
license='LGPL',
packages=setuptools.find_packages(),
classifiers=[
'Development Status :: 2 - Pre-Alpha', # https://martin-thoma.com/software-development-stages/
'Topic :: Scientific/Engineering :: Hydrology',
],
install_requires=[
'numpy>=1.20.*',
'pandas>=1.2.*',
'scipy>=1.6.*',
],
)

0 comments on commit 401b8c9

Please # to comment.