Skip to content

Commit

Permalink
added info for version 2
Browse files Browse the repository at this point in the history
  • Loading branch information
lionel42 committed Apr 26, 2021
1 parent fb56ec5 commit 9b54441
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
# bassin
Python optimization script used for optimizing water flow out of a catch basin or a dam.

## Usage

You can find a usage example in the example.py file.

## Requirements

numpy
matplotlib
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
27 changes: 27 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
from distutils.core import setup
setup(
name = 'bassin',
packages = ['bassin'],
version = '0.2',
license='MIT',
description = (
'Python optimization script used for optimizing water flow out of '
'a catch basin or a dam.'
),
url = 'https://github.com/lionel42/bassin',
download_url = 'https://github.com/lionel42/bassin/archive/refs/tags/v_0.2.tar.gz',
keywords = ['bassin', 'basin', 'dam', 'pumping', 'flow', 'optimization'],
install_requires=[
'numpy',
'matplotlib',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
],
)

0 comments on commit 9b54441

Please sign in to comment.