-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
37 lines (34 loc) · 950 Bytes
/
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
[metadata]
name = bin-parser
version = 1.0.1
description = General binary file parser.
long_description = file: README.rst
author = Jeroen F.J. Laros
author_email = [email protected]
url = https://git.lumc.nl/j.f.j.laros/bin-parser
keywords = binary, parser, yaml, json
license = MIT
classifiers =
Intended Audience :: Science/Research
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python
Topic :: Scientific/Engineering
[options]
zip_safe = False
include_package_data = True
packages = bin_parser, bin_parser_extras
package_dir =
bin_parser = python
bin_parser_extras = extras
install_requires =
PyYAML
jsonpath
[options.entry_points]
console_scripts =
bin_parser = bin_parser.cli:main
compare_yaml = bin_parser_extras.compare_yaml:main
make_skeleton = bin_parser_extras.make_skeleton:main
[flake8]
per-file-ignores =
bin-parser/__init__.py: F401