-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (54 loc) · 1.3 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[tool.poetry]
name = "expectise"
version = "0.0.0" # Placeholder, not used as versions are managed in the CICD
description = "Mocking API and function calls in Python - inspired by Ruby's RSpec-Mocks."
authors = ["tcassou"]
readme = "README.md"
homepage = "https://github.com/tcassou/expectise"
repository = "https://github.com/tcassou/expectise"
keywords = ["python", "testing", "mocking", "unit", "tests"]
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Mocking",
]
packages = [
{ include = "expectise" },
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.0"
pytest = "^7.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.pylic]
safe_licenses = [
"Apache Software License",
"BSD License",
"ISC License (ISCL)",
"MIT License",
"Mozilla Public License 2.0 (MPL 2.0)",
"Python Software Foundation License",
"The Unlicense (Unlicense)",
]
unsafe_packages = []