-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
76 lines (67 loc) · 1.71 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
[build-system]
requires = [
"setuptools-scm[toml]==7.1.0",
"setuptools==68.1.2",
"wheel==0.41.1",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["cstarmigrate"]
[project]
name = "cstar-migrate"
description = "Cassandra schema migration tool"
readme = "README.rst"
requires-python = ">=3.8,<4"
license = {file = "LICENSE"}
keywords = ["cassandra", "schema", "migration", "tool"]
authors = [
{name = "Andrey Martyanov", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Database",
]
dependencies = [
"arrow>=0.15,<2",
"cassandra-driver>=3.0,<4",
"pyyaml>=5.1,<7",
"tabulate>=0.8,<0.10",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"flake8==6.1.0",
"flake8-pyproject==1.2.3",
]
test = [
"pytest-cov==4.1.0",
"pytest==7.4.0",
]
[project.scripts]
cstar-migrate = "cstarmigrate.__main__:main"
[project.urls]
Repository = "https://github.com/martyanov/cstar-migrate"
Issues = "https://github.com/martyanov/cstar-migrate/issues"
[tool.setuptools_scm]
[tool.flake8]
max-line-length = 90
[tool.pytest.ini_options]
addopts = "--cov=cstarmigrate --no-cov-on-fail"
testpaths = [
"cstarmigrate",
"tests",
]
[tool.coverage.report]
show_missing = true
exclude_lines = [
"pragma: no cover",
"if __name__ == '__main__':",
]