-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
45 lines (37 loc) · 1.01 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
[build-system]
requires = ['setuptools >=62', 'wheel']
build-backend = 'setuptools.build_meta'
[project]
name = 'cassandra-lwt-migration-tool'
description = 'Tool to help resolve Cassandra LWTs during large topology changes.'
dynamic = ['dependencies', 'version']
readme = 'README.md'
requires-python = '>=3.7'
authors = [
{name = "Backblaze"}
]
classifiers = [
'Programming Language :: Python :: 3',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS'
]
[project.scripts]
cassandra_lwt_migration_tool = 'cassandra_lwt_migration_tool.cli:main'
[project.optional-dependencies]
dev = [
'black',
'build',
'pyre-check',
'twine'
]
[tool.setuptools]
packages = ['cassandra_lwt_migration_tool',
'cassandra_lwt_migration_tool.data']
[tool.setuptools.dynamic]
dependencies = { file = 'requirements.txt' }
version = { file = 'VERSION' }
[tool.setuptools.package-data]
cassandra_lwt_migration_tool = []
[tool.black]
line-length = 110
include = '/cassandra_lwt_migration_tool/.*\.py$'