-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.cfg
46 lines (41 loc) · 1.02 KB
/
setup.cfg
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
38
39
40
41
42
43
44
45
46
[metadata]
name = transiflow
version = 0.0.0
url = https://github.com/BIMAU/transiflow
license = Apache License 2.0
author = Sven Baars
author_email = [email protected]
description = Implementations and continuation of some standard computational fluid dynamics problems using the finite volume method.
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Topic :: Scientific/Engineering
[options]
install_requires =
numpy
scipy
matplotlib
packages =
transiflow
transiflow.interface
[options.extras_require]
test =
pytest
all =
%(test)s
[aliases]
test = pytest
[tool:pytest]
norecursedirs = lib
[flake8]
ignore = E226,E261,E302,E731,C901,W503
max-line-length = 127
max-complexity = 10
exclude = lib