-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
48 lines (41 loc) · 1.14 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.0", "setuptools_scm>=8"]
[tool.setuptools_scm]
[project]
name = "formulae"
description = "Formulas for mixed-effects models in Python"
requires-python = ">=3.8"
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
dynamic = ["version"]
maintainers = [{ name = "Tomás Capretto", email = "tomicapretto@gmail.com" }]
dependencies = [
"numpy>=1.16",
"packaging",
"pandas>=1.0.0",
"scipy>=1.5.4"
]
[project.optional-dependencies]
dev = [
"black==22.3.0",
"docutils<0.18",
"ipython",
"jupyter-sphinx",
"nbsphinx",
"pydata-sphinx-theme>=0.6.3",
"pylint==2.17.5",
"pytest-cov>=2.6.1",
"pytest==6.2.5",
"Sphinx>=1.8.3"
]
[project.urls]
homepage = "https://bambinos.github.io/formulae"
documentation = "https://bambinos.github.io/formulae"
repository = "https://github.com/bambinos/formulae"
changelog = "https://github.com/bambinos/formulae/blob/main/docs/CHANGELOG.md"
[tool.setuptools]
packages = ["formulae", "formulae.terms"]
[tool.black]
line-length = 100
target-version = ["py39", "py310"]