-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.cfg
53 lines (48 loc) · 1.42 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
[metadata]
name = ensight-reader
version = attr: ensightreader.__version__
author = Tomas Karabela
author_email = [email protected]
description = A pure Python reader for the EnSight Gold format
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/tkarabela/ensight-reader
license = MIT
project_urls =
Documentation = https://ensight-reader.readthedocs.io
Bug Tracker = https://github.com/tkarabela/ensight-reader/issues
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Topic :: Scientific/Engineering
Typing :: Typed
[options]
py_modules =
ensightreader
ensight2obj
ensight2vtk
ensight_transform
python_requires = >=3.9
install_requires =
numpy>=1.21
[options.entry_points]
console_scripts =
ensight2obj = ensight2obj:main
ensight2vtk = ensight2vtk:main
ensight_transform = ensight_transform:main
[mypy]
files = ensightreader.py, tests/test_*.py
[coverage:run]
branch = True
[coverage:report]
show_missing = True
skip_covered = True