-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
103 lines (93 loc) · 2.1 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
94
95
96
97
98
99
100
101
102
103
# coding: utf-8
[metadata]
name = structa
version = 0.4
description = Analyzes data files for common structures
long_description = file: README.rst
author = Dave Jones
author_email = dave@waveform.org.uk
project_urls =
Documentation = https://structa.readthedocs.io/
Source Code = https://github.com/waveform80/structa
Issue Tracker = https://github.com/waveform80/structa/issues
keywords = json yaml csv data analysis
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
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 :: Implementation :: PyPy
[options]
packages = find:
python_requires = >=3.7
install_requires =
setuptools
lxml
chardet
blessings
tqdm
python-dateutil
[options.package_data]
structa.ui =
*.xsl
[options.extras_require]
test =
pytest
pytest-cov
doc =
sphinx
sphinx-rtd-theme
yaml =
ruamel.yaml
[options.entry_points]
console_scripts =
structa = structa.ui.cli:main
[tool:pytest]
addopts = -rsx --cov --tb=short
testpaths = tests
[coverage:run]
source = structa
branch = true
[coverage:report]
show_missing = true
exclude_lines =
raise NotImplementedError
assert False
[copyrights:settings]
include =
**/*.py
**/*.rst
exclude =
docs/examples/*.py
docs/license.rst
license = LICENSE.txt
preamble =
structa: an application for analyzing repetitive data structures
strip-preamble = false
[class_graph:settings]
abstract =
Type
Container
Scalar
Repr
omit =
object
source =
structa/*.py
[previewer:settings]
command = make -C docs html
html = build/html
watch =
structa/*.py
docs/*.rst
docs/examples/*.py
docs/_templates/*.html
docs/_static/*