-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (41 loc) · 945 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
[build-system]
requires = ["setuptools>61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "statstables"
version = "0.0.13"
keywords = [
"statistics",
"tables",
"data",
"pandas",
"numpy",
"scipy",
"latex",
"html",
"ASCII",
]
authors = [
{ name="Anderson Frailey" },
]
description = "A package for making custom LaTeX, HTML, and ASCII statistical tables"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Development Status :: 2 - Pre-Alpha"
]
dependencies = [
"numpy",
"pandas>=2",
"scipy",
"statsmodels",
"linearmodels",
]
[project.urls]
Homepage = "https://github.com/andersonfrailey/statstables"
Issues = "https://github.com/andersonfrailey/statstables/issues"