-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
59 lines (54 loc) · 1.31 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
[tool.poetry]
name = "py_imports"
version = "1.3.0"
description = "Python Toolkit to imports introspection"
authors = ["Andres <[email protected]>"]
readme = "README.md"
repository = "https://github.com/AndresBena19/py-imports.git"
classifiers= [
"Intended Audience :: Developers",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development",
]
packages = [
{ include = "py_imports" },
]
[tool.poetry.dependencies]
python = "^3.7,<4.0"
pyflakes = "2.4.0"
[tool.poetry.dev-dependencies]
bandit = "1.7.0"
flake8 = "4.0.1"
mypy = "0.910"
pre-commit = "^2.13.0"
pytest = "6.2.5"
pytest-cov = "3.0.0"
pytest-mock = "3.6.1"
isort = "5.9.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 90
exclude = '''
/(
\.git
| \.venv
| buck-out
| build
| dist
| .egg
)/
'''
[tool.isort]
profile = "black"