-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
45 lines (39 loc) · 1.17 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 = "coverme"
authors = [
{name = "Alexey Kinëv", email = "[email protected]"},
]
description = "Lightweight and easy configurable server backup utility."
requires-python = ">=3.7"
keywords = ["backup", "utility", "aws", "devops"]
license = {text = "Apache-2.0"}
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
]
dependencies = [
"click>=7.0.0",
"pyyaml>=6.0.0",
"boto3>=1.28.0",
]
dynamic = ["version", "readme"]
[project.optional-dependencies]
dotenv = ["python-dotenv>=1.0.0"]
[project.scripts]
coverme = "coverme:main"
[project.urls]
"Homepage" = "https://github.com/05bit/coverme"
"Bug Tracker" = "https://github.com/05bit/coverme/issues"
[tool.setuptools]
py-modules = ["coverme"]
[tool.setuptools.dynamic]
version = {attr = "coverme.__version__"}
readme = {file = ["README.md"], content-type = "text/markdown"}
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"