-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.cfg
71 lines (67 loc) · 2.04 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
62
63
64
65
66
67
68
69
70
71
[metadata]
name = unimport
version = attr: unimport.__version__
description = The ultimate linter and formatter for removing unused import statements in your code.
long_description = file: README.md
url = https://unimport.hakancelik.dev/
author = Hakan Çelik
author_email = hakancelikdev@gmail.com
keywords =
unused
import
long_description_content_type = text/markdown
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: MIT License
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 :: 3.12
Programming Language :: Python :: Implementation :: CPython
Environment :: Console
Topic :: Software Development :: Libraries :: Python Modules
project_urls =
Documentation = https://unimport.hakancelik.dev/
Issues = https://github.com/hakancelikdev/unimport/issues/
Changelog = https://unimport.hakancelik.dev/1.2.1/CHANGELOG/
[options]
python_requires = >=3.8, <3.13
include_package_data = true
zip_safe = true
packages =
unimport
unimport.commands
unimport.analyzers
package_dir =
=src
install_requires =
libcst>=0.4.10, <=1.1.0; python_version >= '3.11'
libcst>=0.3.7, <=1.1.0; python_version == '3.10'
libcst>=0.3.7, <=1.1.0; python_version == '3.9'
libcst>=0.3.0, <=1.1.0; python_version == '3.8'
pathspec>=0.10.1, <1
toml>=0.9.0, <1
[options.entry_points]
console_scripts =
unimport = unimport.__main__:main
[options.extras_require]
docs =
mkdocs==1.5.3
mkdocs-material==9.4.9
mkdocs-markdownextradata-plugin==0.2.5
mkdocs-minify-plugin==0.7.1
mkdocs-git-revision-date-localized-plugin==1.2.1
mike==2.0.0
test =
pytest==7.4.3
pytest-cov==4.1.0
semantic-version==2.10.0
[options.package_data]
* =
py.typed