-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
93 lines (88 loc) · 2.21 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
82
83
84
85
86
87
88
89
90
91
92
93
[metadata]
name = okonomiyaki
version = file: VERSION
url = https://github.com/enthought/okonomiyaki
author = Enthought Inc.
author_email = [email protected]
description = Self-contained library to deal with metadata in Enthought-specific egg and runtime archives
long_description = file: README.rst, CHANGELOG
long_description_content_type = text/x-rst
license = BSD-3-Clause
license_files = file: LICENSE.txt
classifier =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
[bdist_wheel]
universal = 1
[options]
zip_safe = False
packages =
okonomiyaki
okonomiyaki._cli
okonomiyaki._cli.tests
okonomiyaki.file_formats
okonomiyaki.file_formats.tests
okonomiyaki.file_formats._blacklist
okonomiyaki.platforms
okonomiyaki.platforms.tests
okonomiyaki.runtimes
okonomiyaki.runtimes.tests
okonomiyaki.versions
okonomiyaki.versions.tests
okonomiyaki.utils
okonomiyaki.utils.test_data
okonomiyaki.utils.tests
python_requires = >=3.6
[options.package_data]
okonomiyaki.repositories.tests =
data/*egg
data/broken_legacy_eggs/*egg
data/*.txt
okonomiyaki.utils.test_data =
*.runtime
*.runtime.invalid
eggs/*.egg
eggs/*.txt
eggs/osx_arm64/cp311/*.egg
eggs/osx_x86_64/cp27/*.egg
eggs/osx_x86_64/cp38/*.egg
eggs/osx_x86_64/cp311/*.egg
eggs/rh5_x86_64/cp27/*.egg
eggs/rh6_x86_64/cp27/*.egg
eggs/rh7_x86_64/cp27/*.egg
eggs/rh7_x86_64/cp38/*.egg
eggs/rh8_x86_64/cp311/*.egg
eggs/rh8_arm64/cp311/*.egg
eggs/win_x86_64/cp27/*.egg
eggs/win_x86_64/cp38/*.egg
eggs/win_x86_64/cp311/*.egg
eggs/win_arm64/cp311/*.egg
eggs/broken_legacy_eggs/*.egg
wheels/*.whl
[options.extras_require]
test =
haas
distro
parameterized
testfixtures
packaging >= 20.0
platforms =
attrs >= 16.1.0
distro; sys_platform=="linux2"
distro; sys_platform=="linux"
formats =
zipfile2 >= 0.0.12
jsonschema >= 2.5.1
%(platforms)s
all =
%(platforms)s
%(formats)s
[flake8]
ignore = W503
max-line-length = 120