forked from juneHQ/houseplant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.29 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
[project]
name = "houseplant"
version = "0.2.3"
description = "Database Migrations for ClickHouse."
readme = "README.md"
authors = [{name = "June", email = "[email protected]"}]
maintainers = [{name = "June", email = "[email protected]"}]
license = {text = "MIT license"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Topic :: Database",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"clickhouse-driver >= 0.2.9, < 0.3",
"pyyaml >= 6.0.2, < 6.1",
"typer >= 0.14.0, < 0.15",
"python-dotenv >= 1.0.1, < 1.1",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/juneHQ/houseplant"
Changelog = "https://github.com/juneHQ/houseplant/releases"
Issues = "https://github.com/juneHQ/houseplant/issues"
CI = "https://github.com/juneHQ/houseplant/actions"
[project.scripts]
houseplant = "houseplant.cli:app"
[project.optional-dependencies]
dev = [
"ruff==0.8.6", # linting
"pytest==8.3.4", # testing
"pytest-cov==6.0.0", # testing
"pytest-mock==3.14.0", # testing
"sphinx", # documentation
"tomli", # documentation
]