-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
55 lines (49 loc) · 1.57 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
[metadata]
name = check-oldies
version = 1.0.0.dev0
description = Warns about unattended branches and FIXME or TODO annotations
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://check-oldies.readthedocs.io/en/latest/
author = Polyconseil
author_email = opensource+check-oldies@polyconseil.fr
license = BSD-3-Clause
license_files = LICENSE.txt
classifiers =
Development Status :: 4 - Beta
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
keywords = fixme todo quality
platform = any
project_urls =
Documentation = https://check-oldies.readthedocs.io/en/latest/
Source = https://github.com/Polyconseil/check-oldies
Bug Tracker = https://github.com/Polyconseil/check-oldies/issues
[options]
python_requires = >=3.7
package_dir=
=src
packages=find:
[options.entry_points]
console-scripts =
check-branches = check_oldies.check_branches:main
check-fixmes = check_oldies.check_fixmes:main
check-future-tags = check_oldies.check_future_tags:main
forget-me-not = check_oldies.forget_me_not:main
[options.extras_require]
toml = toml
[options.packages.find]
where = src
[bdist_wheel]
universal = 1
[zest.releaser]
create-wheel = yes