-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
47 lines (44 loc) · 1.42 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
[project]
name = "hutch-bunny"
version = "1.0.0-alpha.3"
description = "A Cohort Discovery Task API worker"
license = { text = "MIT License" }
readme = "README.md"
authors = [
{ name = "Jon Couldridge", email = "[email protected]" },
{ name = "Daniel Lea", email = "[email protected]" },
{ name = "Tri Thien Nguyen", email = "[email protected]" },
{ name = "James Mitchell-White", email = "[email protected]" },
{ name = "Anwar Gaungoo", email = "[email protected]" },
]
maintainers = [
{ name = "Jon Couldridge", email = "[email protected]" },
]
requires-python = ">=3.13"
dependencies = [
"numpy>=2.2.1",
"pandas>=2.2.3",
"psycopg[binary]>=3.2.3",
"python-dotenv>=1.0.1",
"requests>=2.32.3", # daemon-only
"sqlalchemy>=2.0.36",
"trino>=0.331.0", # should become optional
"pymssql>=2.3.2", # for SQL Server
# possible extras?
# "pyodbc>=5.2.0", # not sure exactly when this is or isn't needed?
# mysqlclient="^2.1.1" # should be only when targeting mysql - seems to have system dependencies
]
[project.scripts]
bunny = "hutch_bunny.cli:main"
bunny-daemon = "hutch_bunny.daemon:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ruff>=0.8.6",
"pytest>=8.3.4",
"pandas-stubs>=2.2.3.241126",
"mypy>=1.14.1",
"types-requests>=2.32.0.20241016",
]