forked from pytrainer/pytrainer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (38 loc) · 950 Bytes
/
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 = "pytrainer"
description = "The free sport tracking center"
readme = "README.md"
authors = [
{name = "Fiz Vazquez"},
{name = "John Blance"},
{name = "David Garcia Granda"},
{name = "Arnd Zapletal"},
{name = "Nathan Jones"},
{name = "Arto Jantunen"},
]
license={text = "GNU General Public License (GPL)"}
dynamic = ["version"]
requires-python = ">=3.8"
dependencies = [
"SQLAlchemy",
"lxml",
"matplotlib >= 3.6.0",
"python-dateutil",
"requests",
]
[project.gui-scripts]
pytrainer = "pytrainer:main"
[project.urls]
homepage = "https://github.com/pytrainer"
repository = "https://github.com/pytrainer"
[project.optional-dependencies]
mysql = ["mysqlclient"]
postgresql = ["psycopg2"]
[build-system]
requires = ["setuptools"]
[tool.setuptools]
zip-safe = false
[tool.setuptools.dynamic]
version = {attr = "pytrainer.PKG_VERSION"}
[tool.setuptools.packages.find]
include = ["pytrainer*"]