forked from jasondcamp/pyway
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
48 lines (41 loc) · 1.26 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pyway"
dynamic = ["version", "readme"]
authors = [{name = "Jason Camp", email = "me@jason.camp"}]
license = {text = "GPL"}
description = "Pyway is a database versioning and migration tool inspired by Flyway"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"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 = [
"tabulate == 0.9.0",
"psycopg2-binary >= 2.9.5",
"mysql-connector-python >= 8.0.32",
"pyyaml >= 6.0.1",
"strip_ansi >= 0.1.1"
]
requires-python = ">=3.8"
[project.optional-dependencies]
tests = [
"pytest >= 7.2.1",
"pytest-env >= 0.8.1",
"pytest-cov >= 4.0.0",
"coverage >= 7.2.1",
"mysqld-integration-test >= 8.4.0"
]
[project.urls]
Homepage = "https://github.com/jasondcamp/pyway"
[project.scripts]
pyway = "pyway.scripts.main:cli"
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
version = {attr = "pyway.version.__version__"}