-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.cfg
61 lines (57 loc) · 1.73 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
56
57
58
59
60
61
[metadata]
name = unexport
version = attr: unexport.__version__
url = https://unexport.hakancelik.dev/
author = Hakan Celik
author_email = [email protected]
description = Unexport is a linter that tries to keep the __all __ in your Python modules always up to date.
long_description = file: README.md
keywords =
all
long_description_content_type = text/markdown
license = GNU General Public License v3.0
license_files =
file: LICENSE
classifiers =
Development Status :: 1 - Planning
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: CPython
Environment :: Console
Topic :: Software Development :: Libraries :: Python Modules
project_urls =
Documentation = https://unexport.hakancelik.dev/
Issues = https://github.com/hakancelikdev/unexport/issues/
Changelog = https://unexport.hakancelik.dev/changelog
[options]
python_requires = >=3.8
include_package_data = true
zip_safe = true
packages =
unexport
package_dir =
=src
install_requires =
[options.entry_points]
console_scripts =
unexport = unexport.__main__:main
[options.extras_require]
docs =
mkdocs==1.3.0
mkdocs-material==8.3.6
mkdocs-markdownextradata-plugin==0.2.5
mkdocs-minify-plugin==0.5.0
mkdocs-git-revision-date-localized-plugin==1.0.1
tests =
pytest==6.2.4
pytest-cov==2.12.1
[options.package_data]
* =
py.typed