-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
81 lines (74 loc) · 1.54 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[metadata]
name = yt_idv
version = 0.4.2
description = Interactive Volume Rendering for yt
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/yt-project/yt_idv
author = Matthew Turk
author_email = [email protected]
license = BSD-3-Clause
license_files = LICENSE
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: CPython
keywords = yt_idv
[options]
packages = find:
install_requires =
Click>=7.0
cmyt
imgui>=1.2.0
matplotlib>=3.0
numpy>=1.18.0
pyOpenGL>=3.1.5
pyglet>=2.0.dev0
pyyaml>=5.3.1
traitlets>=5.0.5
traittypes>=0.2.1
yt>=4.1.0
python_requires = >=3.9
include_package_data = True
zip_safe = False
[options.packages.find]
include =
yt_idv
yt_idv.*
[options.entry_points]
console_scripts =
yt_idv=yt_idv.cli:main
[options.extras_require]
dev =
twine==1.14.0
wheel==0.33.6
minimal =
numpy<2.0
test =
pytest>=6.2.4
pytest-html
[bdist_wheel]
universal = 1
[flake8]
max-line-length = 88
exclude = docs,
*/__init__.py
ignore =
E203,
E231,
E266,
E302,
E306,
E741,
W503,
W605,
B302,
[aliases]
test = pytest