-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.cfg
More file actions
48 lines (42 loc) · 1.35 KB
/
setup.cfg
File metadata and controls
48 lines (42 loc) · 1.35 KB
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
47
48
[metadata]
name = opencmp
version = 1.0.2
description = OpenCMP is a computational multiphysics software package based on the finite element method. It is primarily intended for physicochemical processes involving significant convective flow.
long_description = file: README.md, LICENSE.md
keywords = multiphysics, simulation
license = BSD 3-Clause License
classifiers =
Topic :: Scientific/Engineering :: Physics
License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Programming Language :: Python :: 3 :: Only
[options]
zip_safe = False
include_package_data = False
packages = find:
install_requires =
numpy;python_version>'3.7.0'
scipy;python_version>'3.7.0'
ngsolve;python_version>'3.7.0'
configparser;python_version>'3.7.0'
pyparsing;python_version>'3.7.0'
[options.package_data]
[options.entry_points]
console_scripts =
pytesting = opencmp.entry_points:pytest_tests
opencmp = opencmp.entry_points:run_opencmp
[options.extras_require]
test =
pytest;python_version>'3.7'
test_ext =
pytest;python_version>'3.7'
pytest-xdist;python_version>'3.7'
tab =
tabulate;python_version>'3.7'
edt =
edt;python_version>'3.7'
all =
pytest;python_version>'3.7'
pytest-xdist;python_version>'3.7'
tabulate;python_version>'3.7'
edt;python_version>'3.7'
[options.packages.find]