-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
51 lines (46 loc) · 1.15 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
46
47
48
49
50
51
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["test"]
[project]
name = "gptables"
authors = [
{name = "Analysis Standards and Pipelines", email = "ASAP@ons.gov.uk"}
]
maintainers = [
{name = "Analysis Standards and Pipelines", email = "ASAP@ons.gov.uk"}
]
version = "1.2.0"
requires-python = '>=3.7'
description = 'Simplifying good practice in statistical tables.'
readme = "README.rst"
license = {text = "MIT License"}
keywords=["reproducible", "tables", "excel", "xlsxwriter", "reproducible-analytical-pipelines"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
dependencies = [
"pandas>=0.25.3",
"xlrd>=1.2.0",
"XlsxWriter>=1.2.6",
"pyyaml>=3.12"
]
[project.optional-dependencies]
docs = [
"sphinx>=2",
"sphinx_rtd_theme"
]
testing = [
"sphinx>=2",
"sphinx_rtd_theme",
"coverage",
"pytest>=6.2.5",
"pytest-cov"
]
[version]
file = "VERSION"
[project.urls]
Homepage = "https://github.com/best-practice-and-impact/gptables"
Documentation = "https://gptables.readthedocs.io/en/latest/"