-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
33 lines (30 loc) · 1.29 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
[build-system]
requires = ["setuptools", "setuptools_scm[toml]", "wheel", "cython"]
build-backend = "setuptools.build_meta"
[project]
name = "pyreports"
version = "1.7.0"
readme = "README.md"
license = { text = "GNU General Public License v3.0" }
keywords = ['pyreports', 'reports', 'report', 'csv', 'yaml', 'export',
'excel', 'database', 'ldap', 'dataset', 'file', 'executor', 'book']
maintainers = [
]
description = "pyreports is a python library that allows you to create complex report from various sources."
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = ['ldap3', 'mysql-connector-python',
'psycopg2-binary', 'tablib', 'tablib[all]', 'nosqlapi', 'pyyaml']
[project.scripts]
reports = "pyreports.cli:main"
[project.urls]
homepage = "https://github.com/MatteoGuadrini/pyreports'"
documentation = "https://pyreports.readthedocs.io/en/latest/"
repository = "https://github.com/MatteoGuadrini/pyreports.git"
changelog = "https://github.com/MatteoGuadrini/pyreports/blob/master/CHANGES.md"