-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
40 lines (35 loc) · 1.08 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
[tool.poetry]
name = "reproductive-rights-data-project"
version = "0.1.0"
description = "A capstone project for UChicago's CAPP122 course where state-wide abortion law and clinic data is taken from multiple sources and used to create intuitive visuals."
authors = ["Aïcha Camara <[email protected]>", "Chanteria Milner <[email protected]>",
"Kate Habich <[email protected]>", "Michael Plunkett <[email protected]>"]
readme = "README.md"
packages = [{include = "reproductive_rights_project"}]
[tool.poetry.dependencies]
python = "^3.11"
pytest = "^7.2.1"
black = "^22.12.0"
requests = "^2.28.2"
responses = "^0.22.0"
scikit-learn = "^1.2.1"
plotly = "^5.13.0"
pandas = "^1.5.3"
dash = "^2.8.1"
dash-bootstrap-components = "^1.3.1"
flask = "^2.2.3"
isort = "^5.12.0"
ruff = "^0.0.263"
[tool.black]
line-length = 80
[tool.isort]
profile= "black"
line_length = 80
skip = [".gitignore", "reproductive_rights_data_project/data/"]
[tool.ruff]
fix=true
line-length = 80
target-version = "py311"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"