-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.cfg
60 lines (54 loc) · 1.39 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[metadata]
name = FMU4FOAM
version = attr: FMU4FOAM._version.__version__
author = Henning Scheufler
home-page = https://github.com/DLR-RY/FMU4FOAM
description = A lightweight framework that enables the packaging of OpenFOAM as co-simulation FMUs.
long_description = file: README.md
long_description_content_type = text/markdown
license = GPLv3
license-file = LICENSE
keywords = FMI OpenFOAM
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: End Users/Desktop
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Natural Language :: English
Programming Language :: C++
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering
[options]
include_package_data = True
packages = find:
package_dir =
=src
zip_safe = False
install_requires =
pyzmq
pythonfmu
[options.packages.find]
where = src
[options.package_data]
FMU4FOAM =
resources/*.dll
resources/*.dylib
resources/*.lib
resources/*.so
resources/*.a
[options.entry_points]
console_scripts =
fmu4foam = FMU4FOAM.__main__:cli_main
[options.extras_require]
tests =
pytest
pyfmi
fmpy
# [tool:pytest]
# markers =
# integration: marks integration tests