You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
447 B
31 lines
447 B
1 year ago
|
--- a/setup.cfg
|
||
|
+++ b/setup.cfg
|
||
|
@@ -1,4 +1,24 @@
|
||
|
-[egg_info]
|
||
|
-tag_build =
|
||
|
-tag_date = 0
|
||
|
+[options]
|
||
|
+packages = find:
|
||
|
|
||
|
+python_requires = >=3.7
|
||
|
+
|
||
|
+include_package_data = True
|
||
|
+install_requires =
|
||
|
+ pathspec >= 0.5.3
|
||
|
+ pyyaml
|
||
|
+ setuptools
|
||
|
+
|
||
|
+test_suite = tests
|
||
|
+
|
||
|
+[options.packages.find]
|
||
|
+exclude =
|
||
|
+ tests
|
||
|
+ tests.*
|
||
|
+
|
||
|
+[options.package_data]
|
||
|
+yamllint = conf/*.yaml
|
||
|
+
|
||
|
+[options.entry_points]
|
||
|
+console_scripts =
|
||
|
+ yamllint = yamllint.cli:run
|