generated from keathmilligan/python-boilerplate-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
51 lines (46 loc) · 1.12 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
[metadata]
name = python-boilerplate-cli
version = 0.1
author = Keath Milligan
author_email = [email protected]
summary = A simple Python CLI boilerplate project
description_file = README.md
home_page = https://github.com/keathmilligan/python-boilerplate-cli
requires_dist = setuptools
classifier =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Topic :: Software Development :: Build Tools
Topic :: Software Development :: Libraries :: Python Modules
Topic :: System :: Archiving :: Packaging
[options]
packages = find:
install_requires =
click
colorama
setup_requires =
pytest-runner
wheel
tests_requires =
pytest
entry_points =
[console_scripts]
sample_cli=sample:cli
[options.extras_require]
dev =
pytest
pylint
Sphinx
wheel
[options.packages.find]
exclude = tests
[build_sphinx]
project = Python CLI Boilerplate Project
release = 0.1.0
copyright = Copyright 2022 Keath Milligan
config_dir = docs
[aliases]
test=pytest