-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
78 lines (66 loc) · 1.29 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[project]
name = "dsst_etl"
dynamic = ["version"]
description = "An ETL package for data processing at DSST"
requires-python = ">=3.11"
dependencies = [
"sqlalchemy",
"psycopg2-binary",
"python-dotenv",
"pydantic",
"alembic",
"requests",
"pandas",
"metapub",
"beautifulsoup4",
"psycopg2-binary",
"word2number",
"pip",
"pre-commit>=4.0.1",
"pytest>=8.3.3",
"boto3",
"sqlalchemy-utils>=0.41.2",
"pandas",
"pyarrow",
"pdf2doi",
"tqdm",
"pypdf",
]
[project.optional-dependencies]
dev = [
"ruff",
"black",
"flake8",
"mypy",
"isort",
"ipython",
"types-requests",
"pandas-stubs",
"types-beautifulsoup4",
"types-psycopg2",
"types-tqdm",
]
ci = [
"coverage>=7.6.7",
"alembic",
]
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=3.4"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "dsst_etl/_version.py"
[tool.setuptools.packages.find]
where = ["."]
[project.scripts]
ingest = "dsst_etl.ingest:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
[tool.black]
line-length = 88
target-version = [ "py311"]
[tool.ruff]
line-length = 88
indent-width = 4
[tool.poetry.dependencies]
alembic = "^1.7"