-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.cfg
More file actions
73 lines (59 loc) · 1.44 KB
/
Copy pathsetup.cfg
File metadata and controls
73 lines (59 loc) · 1.44 KB
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
#
[check]
metadata = 1
strict = 1
[metadata]
author = sinoroc
author_email = sinoroc.code+python@gmail.com
classifiers =
Development Status :: 2 - Pre-Alpha
Framework :: tox
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Software Development :: Testing
Typing :: Typed
description = Tox plugin to help working with Poetry-based projects
license = Apache-2.0
license_file = LICENSE.txt
long_description = file: README.rst
long_description_content_type = text/x-rst
name = tox-poetry-dev-dependencies
project_urls =
GitHub = https://github.com/sinoroc/tox-poetry-dev-dependencies
GitLab = https://gitlab.com/sinoroc/tox-poetry-dev-dependencies
url = https://pypi.org/project/tox-poetry-dev-dependencies/
[options]
install_requires =
poetry-core ~= 1.0
tomlkit
tox
package_dir =
= src
packages = find:
python_requires = ~= 3.5
[options.entry_points]
tox =
poetry_dev_dependencies = tox_poetry_dev_dependencies._hooks
[options.extras_require]
dev_package =
twine
wheel
dev_test =
mypy
pycodestyle
pydocstyle
pylint
pytest
pytest-mypy
pytest-pycodestyle
pytest-pydocstyle
pytest-pylint
pytest-yapf3
yapf
[options.packages.find]
where = src
# EOF