-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
44 lines (40 loc) · 942 Bytes
/
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
[project]
name = "variome"
version = "0.1.0"
description = "Portal for the Wasserman lab BVL"
authors = [
{ name = "Brad W" },
{ name = "Brittany H" },
{ name = "Stephanie Q"}
]
dependencies = [
"django==4.2.13",
"sqlalchemy>=2.0.30",
"sqlalchemy-utils>=0.41.2",
"natsort>=8.4.0",
"pandas>=2.2.2",
"numpy>=1.26.4",
"psycopg2-binary>=2.9.9",
"dj-database-url>=2.1.0",
"djangorestframework>=3.15.1",
"django-extensions>=3.2.3",
"django-cors-headers>=4.3.1",
"django-tracking2>=0.5.1",
"django-auth-adfs>=1.14.0",
"django-pghistory>=3.2.0",
"python-dotenv>=1.0.1",
]
readme = "README.md"
requires-python = ">= 3.11"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"black>=24.4.2",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["variome"]