-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
78 lines (72 loc) · 1.97 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
70
71
72
73
74
75
76
77
78
[tool]
[tool.poetry]
name = "BtrFsGit"
version = "9000.0.1"
homepage = "https://github.com/koo5/bfg"
description = "B-tree Filesystem Git attempts to enable git-like workflow for BTRFS subvolumes. Commit, push, checkout, stash, pull..."
authors = ["koo5 <[email protected]>"]
readme = "README.md"
license = "GNU Affero General Public License v3 or later (AGPLv3+)"
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
packages = [
{ include = "bfg" },
{ include = "tests", format = "sdist" },
]
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
fire = "0.4.0"
docutils = "^0.20"
black = { version = "20.8b1", optional = true}
isort = { version = "5.6.4", optional = true}
flake8 = { version = "3.8.4", optional = true}
pytest = { version = "6.1.2", optional = true}
pytest-cov = { version = "2.10.1", optional = true}
tox = { version = "^3.20.1", optional = true}
virtualenv = { version = "^20.2.2", optional = true}
pip = { version = "^20.3.1", optional = true}
twine = { version = "^3.3.0", optional = true}
pre-commit = {version = "^2.12.0", optional = true}
toml = {version = "^0.10.2", optional = true}
pathvalidate = "^2.5.0"
PyInquirer = "^1.0.3"
sqlalchemy = "^2.0.36"
psycopg = "^3.2.3"
[tool.poetry.extras]
test = [
"pytest",
"black",
"isort",
"flake8",
"pytest-cov"
]
dev = ["tox", "pre-commit", "virtualenv", "pip", "twine", "toml"]
[tool.poetry.scripts]
bfg = 'bfg.bfg:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''