-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
58 lines (55 loc) · 1.48 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
[metadata]
name = clixx
version = attr: clixx.__version__
description = Command-line interface parser & framework for Python
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
license_files = LICENSE
author = xymy
author_email = [email protected]
maintainer = xymy
maintainer_email = [email protected]
url = https://github.com/xymy/clixx
project_urls =
Documentation = https://github.com/xymy/clixx
Issue Tracker = https://github.com/xymy/clixx/issues
Source Code = https://github.com/xymy/clixx
keywords = cli
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved
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
Topic :: Software Development
Topic :: Software Development :: Libraries
[options]
packages = find:
package_dir =
= src
include_package_data = True
zip_safe = True
python_requires = >=3.8
install_requires =
rich>=13.0
typing-extensions>=4.4
[options.packages.find]
where = src
[options.extras_require]
lint =
black>=23.7
ruff>=0.0.286
mypy>=1.5
test =
coverage>=7.2
hypothesis>=6.80
pytest>=7.4
pytest-cov>=4.1