-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[metadata] | ||
description-file = README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
], | ||
) |