Skip to content

Commit 01a5d0c

Browse files
committed
added setup.py files
1 parent 6588d42 commit 01a5d0c

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed

setup.cfg

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
[metadata]
2+
name = pysimdeum
3+
version = 0.0.1
4+
description = A stochastic water demand end-use model in Python
5+
;author = David B. Steffelbauer
6+
;author-email = [email protected]
7+
;maintainer = Bram Hillebrand
8+
;maintainer-email = [email protected]
9+
;long_description = file: README.md
10+
license = EUPL
11+
classifiers =
12+
Development Status :: 4 - Beta
13+
Intended Audience :: Developers
14+
Topic :: Scientific/Engineering
15+
License :: OSI Approved :: EUPL License
16+
Programming Language :: Python :: 3.8
17+
Typing :: Typed
18+
;url = https://github.com/KWR-Water/pysimdeum
19+
project_urls =
20+
Documentation = https://pysimdeum.readthedocs.io
21+
keyword =
22+
water demand
23+
modelling
24+
stochastic
25+
26+
[options]
27+
python_requires_python = >3.8
28+
install_requires =
29+
matplotlib
30+
numpy
31+
pandas
32+
toml
33+
xarray
34+
scipy
35+
packages = find:
36+
37+
[options.package_data]
38+
* = *.exe
39+
40+
[options.packages.find]
41+
exclude =
42+
examples
43+
testing

setup.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from setuptools import setup
2+
3+
setup()

0 commit comments

Comments
 (0)