-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (65 loc) · 1.64 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
62
63
64
65
66
67
68
69
[tool.poetry]
name = "dysco"
version = "0.0.8"
description = "Dysco provides configurable dynamic scoping behavior in Python."
authors = ["Evan Sangaline <[email protected]>"]
license = "BSD-2-Clause"
readme = "README.md"
homepage = "https://github.com/intoli/dysco/"
repository = "https://github.com/intoli/dysco/"
keywords = ["dynamic scope"]
classifiers = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
"Topic :: Software Development :: Libraries",
]
include = [
"LICENSE.md",
]
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
black = {version = "^18.3-alpha.0", allow-prereleases = true}
isort = "^4.3"
ipython = "^7.9"
mypy = "^0.740.0"
pytest = "^5.2"
flake8 = "^3.7"
sphinx = "^2.2"
sphinx-autodoc-typehints = "^1.10"
pytest-sugar = "^0.9.2"
pytest-cov = "^2.8"
pytest-pudb = "^0.7.0"
pytest-watch = "^4.2"
tox = "^3.14"
pudb = "^2019.1"
m2r = "^0.2.1"
python-docs-theme = "^2018.7"
tox-pyenv = "^1.1"
importlib-metadata = "^0.23.0"
invoke = "^1.3"
grip = "^4.5.2"
pytest-asyncio = "^0.10.0"
[tool.black]
target_version = ['py36', 'py37', 'py38']
skip_string_normalization = true
line-length = 100
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.tox
| \.venv
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"