forked from igrr/astyle_py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
45 lines (39 loc) · 966 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
38
39
40
41
42
43
44
45
[metadata]
name = astyle_py
version = attr: astyle_py.__version__
description = Astyle, wrapped in a python package.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/igrr/astyle_py
author = Ivan Grokhotkov
author_email = [email protected]
license = MIT
license_files = LICENSE
classifier =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3 :: Only
[options]
packages = find:
install_requires =
wasmtime~=12.0.0
PyYAML~=6.0.1
include_package_data = True
python_requires = >=3.8
[options.extras_require]
dev =
pytest
types-PyYAML
pre-commit
coverage
[options.package_data]
astyle_py = lib/*/libastyle.wasm
[options.entry_points]
console_scripts =
astyle_py = astyle_py.__main__:main
[bdist_wheel]
universal = True
[flake8]
max-line-length = 120