-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
65 lines (60 loc) · 1.6 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
[metadata]
name = objdictgen
version = attr: objdictgen.__version__
description = CanFestival Object Dictionary tool
long_description = file: README.md
long_description_content_type = text/markdown
author = Svein Seldal
author_email = sveinse@seldal.com
url = https://github.com/Laerdal/python-objdictgen
keywords = build, development, canopen, canfestival, object dictionary, od
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Topic :: Software Development :: Build Tools
Topic :: Software Development :: Code Generators
Topic :: Software Development :: Embedded Systems
Topic :: Software Development :: Libraries :: Application Frameworks
License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Programming Language :: Python :: 3
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3 :: Only
[options]
package_dir =
= src
packages = find_namespace:
include_package_data = True
python_requires = >=3.10, <4
install_requires =
jsonschema
colorama
deepdiff
[options.packages.find]
where = src
[options.package_data]
objdictgen = py.typed
objdictgen.config = *.prf
objdictgen.img = *
objdictgen.schema = *.json
[options.extras_require]
ui =
wxPython
dist =
build
dev =
pylint
isort
mypy
types-setuptools
types-colorama
types-wxpython
pytest
coverage
pytest-cov
pytest-mock
freezegun
[options.entry_points]
console_scripts =
odg = objdictgen.__main__:main