-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
46 lines (42 loc) · 1.38 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
[metadata]
name = cli_command_parser
version = attr: cli_command_parser.__version__.__version__
description = CLI Command Parser
url = https://github.com/dskrypa/cli_command_parser
project_urls =
Source = https://github.com/dskrypa/cli_command_parser
Documentation = https://dskrypa.github.io/cli_command_parser
Issues = https://github.com/dskrypa/cli_command_parser/issues
license = Apache 2.0
license_files = LICENSE
long_description = file: readme.rst
long_description_content_type = text/x-rst
author = Doug Skrypa
author_email = [email protected]
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Topic :: Software Development :: User Interfaces
Topic :: Text Processing
[options]
include_package_data = True
entry_points = file: entry_points.txt
packages = find:
package_dir = = lib
python_requires = >=3.9
tests_require = testtools; coverage
[options.packages.find]
where = lib
[options.extras_require]
wcwidth =
wcwidth