-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (52 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
56 lines (52 loc) · 1.1 KB
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
[project]
name = 'quackup'
version = '0.1.0'
description = 'A simple migration tool for DuckDB databases.'
readme = 'README.md'
license = { file = 'LICENSE' }
authors = [
{ name = 'Jayme Edwards', email = 'jayme.edwards@gmail.com' }
]
requires-python = '>=3.7'
keywords = ['duckdb', 'migrations', 'database', 'schema']
classifiers = [
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
]
dependencies = [
'click',
'configparser',
'dotenv',
'duckdb'
]
# Optional dependencies for testing
[project.optional-dependencies]
test = [
"pytest",
"pytest-mock",
"pytest-cov"
]
[project.scripts]
quackup = 'quackup.cli:cli'
[build-system]
requires = ['setuptools>=42', 'wheel', 'tomli']
build-backend = 'setuptools.build_meta'
[tool.setuptools.packages.find]
include = ['quackup']
exclude = [
'.venv',
'build',
'dist',
'migrations',
'node_modules',
'tests',
'*.md',
'*.toml',
'*.ini',
'*.json',
'*.code-workspace',
'.flake8',
'.pylintrc',
'.releasrc.json'
]