-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
74 lines (65 loc) · 1.62 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
72
73
[metadata]
name = bashdoctest
description = "A Doctest-type Command Line Application Tester"
long_description = file: README.rst
long_description_content_type = text/x-rst
author = "Michael Delgado, Julian Edwards"
home_page = https://github.com/juledwar/bashdoctest
maintainer = Julian Edwards
maintainer_email = [email protected]
license = "MIT license"
keywords = bashdoctest
classifier =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Information Technology
Intended Audience :: System Administrators
Natural Language :: English
Topic :: Utilities
[options]
packages = find:
zip_safe = False
include_package_data = True
install_requires =
click>=6.0
[options.packages.find]
exclude =
*.tests
*.tests.*
tests.*
tests
docs
examples
[options.extras_require]
test =
click>=6.0
Sphinx>=1.4.1
sphinx_rtd_theme>=0.1.0
jinja2>=2.8
pip>=8.0
wheel>=0.27
flake8>=2.0
tox>=2.3.0
coverage>=4.0
pytest>=3.0
pytest_cov>=2.0
pytest-runner>=2.5
build>=0.7.0
twine>=3.4.2
[bdist_wheel]
universal = 1
[flake8]
exclude = docs
[aliases]
test = pytest
[tool:pytest]
addopts = ./bashdoctest ./tests --cov=bashdoctest --cov=tests --doctest-modules --cov-report term-missing