forked from 42School/norminette
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
28 lines (26 loc) · 867 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
[metadata]
name = norminette
version = attr: norminette.__version__
description = Open source norminette to apply 42's norme to C files
long_description = file: README.md
long_description_content_type = text/markdown
author = 42
author_email = pedago@42.fr
url = https://github.com/42School/norminette
keywords = 42,norminette
license = MIT License
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
packages = norminette, norminette.lexer, norminette.rules, norminette.tools
zip_safe = False
include_package_data = True
python_requires = >= 3.7
[options.entry_points]
console_scripts = norminette=norminette.__main__:main