-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (47 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
51 lines (47 loc) · 1.12 KB
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
[tool.poetry]
name = "tada-predict"
version = "1.0.3"
description = "Predict the likely worst-case order-of-growth function for an arbitrary Python function."
authors = [
"Enpu You <youe2@allegheny.edu>",
"Gregory Kapfhammer <gkapfham@allegheny.edu>",
"Lancaster Wu <wuj@allegheny.edu>"
]
maintainers = [
"Enpu You <youe2@allegheny.edu>",
"Lancaster Wu <wuj@allegheny.edu>"
]
license = "GPL-3.0"
readme = "README.md"
homepage = "https://tada-predict.netlify.app"
repository = "https://github.com/Tada-Project/tada"
packages = [
{ include = "tada"},
]
[tool.poetry.dependencies]
python = "^3.6"
pyperf = "*"
hypothesis = "*"
hypothesis-jsonschema = "*"
pandas = "*"
ptable = "*"
colorama = "*"
matplotlib = "^3.3.0"
mkdocs = "^1.1.2"
mkdocs-material = "^6.1.6"
markdown-include = "^0.6.0"
mkdocs-git-revision-date-plugin = "^0.3.1"
[tool.poetry.dev-dependencies]
pylint = "*"
neovim = "*"
pytest = "*"
pytest-benchmark = "*"
codecov = "*"
flake8 = "*"
pytest-cov = "*"
black = "^19.10b0"
[tool.poetry.scripts]
tada = 'tada:main'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"