-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
49 lines (39 loc) · 1.02 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
[metadata]
name = palgen
version = 0.1
description = Code generation utility
long_description = file: README.md
url = https://github.com/palliate/palgen
project_urls =
Bug Tracker = https://github.com/palliate/palgen/issues
author = Tsche
author_email= [email protected]
license = MIT
license_files = LICENSE
platforms = unix, linux, osx, cygwin, win32
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
packages = find:
zip_safe = False
python_requires = >=3.10
include_package_data = True
install_requires = file: requirements.txt
[options.extras_require]
testing = file: requirements_dev.txt
conan = conan~=2.0.9
jinja2 = jinja2~=3.1.2
[options.entry_points]
console_scripts =
palgen = palgen:main
[options.packages.find]
where=src
[options.package_data]
* =
py.typed
**/integrations/cmake/*.cmake
[flake8]
extend-ignore = D1, D2, E1, E2, E3, E501, W1, W2, W3, W5