-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
55 lines (48 loc) · 1.11 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
[metadata]
name = hoff-cli
version = 0.1.2
author = Dylan Justice
author_email = [email protected]
summary = CLI Wrapper for useful development commands
description_file = README.md
home_page = https://github.com/dylancjustice/hoff-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 == 8.0.1
setup_requires =
pytest-runner
wheel
tests_requires =
pytest
faker
[options.extras_require]
dev =
pytest
faker
pylint
Sphinx
wheel
autopep8
[options.packages.find]
exclude = tests
[options.entry_points]
console_scripts =
hoff = hoff.hoff:main
[build_sphinx]
project = Hoff Cli
release = 0.1.0
copyright = Copyright 2022 Dylan Justice
config_dir = docs
[aliases]
test=pytest