-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (44 loc) · 1.04 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
[project]
name = "spinner"
authors = [
{name = "Rodrigo Ceccato de Freitas", email = "rodrigoceccatodefreitas@gmail.com"},
{name = "Jhonatan Cléto", email="j256444@dac.unicamp.br"}
]
version = "0.0.1"
requires-python = ">=3.9.12, <4"
dependencies = [
"click==8.1.7",
"pandas==2.2.2",
"matplotlib==3.9.0",
"rich==13.7.1",
"seaborn==0.13.2",
"jupyter==1.0.0",
"jinja2==3.1.4",
"numpy==2.0.0",
"ipykernel==6.29.4",
"tokenize-rt==5.2.0",
"seaborn==0.13.2",
"scipy==1.13.1"
]
[project.optional-dependencies]
dev = [
"black==24.4.2",
"black[jupyter]==24.4.2",
"isort==5.13.2",
"taskipy==1.13.0"
]
[project.scripts]
spinner = "cli.main:cli"
[tool.setuptools.packages.find]
where = ["spinner"]
include = ["*"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.data-files]
"spinner" = ["spinner/exporter/reporter.ipynb"]
[tool.isort]
profile = "black"
line_length = 79
[tool.taskipy.tasks]
lint = "black --check --diff . && isort --check --diff ."
format = "black . && isort ."