-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (37 loc) · 1.13 KB
/
pyproject.toml
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
[tool.poetry]
name="autohooks-plugin-pytest"
version="0.0.1"
description="Autohooks plugin for code testing and test coverage using pytest and pytest-cov"
authors=["Anuj Yadav <[email protected]>"]
readme="README.md"
packages = [
{ include = "autohooks" }
]
license = "GPL-3.0"
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Version Control :: Git',
]
include = ["CHANGELOG.md","README.md","RELEASE.md"]
[tool.poetry.dependencies]
python = ">=3.5"
pytest = "*"
pytest-cov = "*"
autohooks = ">=1.1"
[tool.poetry.dev-dependencies]
pytest = "*"
twine = "*"
wheel = "*"
setuptools="*"
[tool.autohooks]
pre-commit = ['autohooks.plugins.pytest']