-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 945 Bytes
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 945 Bytes
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 = "hypoforge"
version = "1.0.0"
description = "A web application for hypothesis testing and data analysis"
authors = [
{name = "Prudhvi", email = "kprudhvi71@gmail.com"}
]
dependencies = [
"fastapi>=0.104.1",
"uvicorn[standard]>=0.24.0",
"python-multipart>=0.0.6",
"pandas>=2.1.3",
"scipy>=1.11.4",
"numpy>=1.26.0",
"httpx>=0.27.0",
"pyarrow>=15.0.0",
"tomli>=2.0.1",
]
requires-python = ">=3.9"
[project.optional-dependencies]
test = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
"httpx>=0.27.0",
]
[project.scripts]
hypoforge = "app:main"
[project.urls]
Homepage = "https://github.com/prudhvi/hypoforge-python"
Repository = "https://github.com/prudhvi/hypoforge-python"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["."]
[tool.hatch.metadata]
allow-direct-references = true