-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.cfg
51 lines (46 loc) · 1.2 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
[metadata]
name = pythonfmu
version = attr: pythonfmu._version.__version__
author = NTNU-IHB
home-page = https://github.com/NTNU-IHB/PythonFMU
description = A lightweight framework that enables the packaging of Python3.x code as co-simulation FMUs.
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
license-file = LICENSE
keywords = FMI
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: End Users/Desktop
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
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
Topic :: Scientific/Engineering
tests_require =
pytest
fmpy
[options]
include_package_data = True
packages = find:
zip_safe = False
[options.package_data]
pythonfmu =
resources/*.dll
resources/*.dylib
resources/*.so
[options.entry_points]
console_scripts =
pythonfmu = pythonfmu.__main__:cli_main
[options.extras_require]
tests =
pytest
fmpy
[tool:pytest]
markers =
integration: marks integration tests