forked from zifter/clickhouse-migrations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (52 loc) · 1.57 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
[project]
name = "clickhouse-migrations"
description = "Simple file-based migrations for clickhouse"
authors = [
{name = "Aleh Strakachuk", email = "[email protected]"},
]
urls.Homepage = "https://github.com/zifter/clickhouse-migrations"
urls.Source = "https://github.com/zifter/clickhouse-migrations"
urls.Tracker = "https://github.com/zifter/clickhouse-migrations/issues"
requires-python = ">=3.7, <4"
keywords = [
"clickhouse",
"migrations",
]
license = {text = "MIT"}
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"clickhouse-driver>=0.2.2",
]
optional-dependencies.testing = [
"pytest==7.4.1",
"pytest-cov==4.1.0",
"parameterized==0.9.0",
]
dynamic =["version", "readme"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
version = {attr = "clickhouse_migrations.__version__"}
[tool.setuptools]
package-dir = { "clickhouse_migrations" = "src/clickhouse_migrations", "tests" = "src/tests" }
packages = [
"clickhouse_migrations"
]
[tool.distutils.bdist_wheel]
universal = true
[tool.isort]
profile = "black"
[tool.hatch.version]
source = "vcs"
[project.scripts]
clickhouse-migrations = "clickhouse_migrations.cmd:main"