-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 841 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 841 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
[project]
name = "softnet"
version = "0.8.0"
description = "Social Network Analysis Tool"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.110.0",
"uvicorn[standard]>=0.27.0",
"python-multipart>=0.0.9",
"python-igraph>=0.11.3",
"leidenalg>=0.10.2",
"msgpack>=1.0.7",
"numpy>=1.26.0",
"lxml>=5.1.0",
"httpx>=0.27.0",
"pydantic>=2.6.0",
"pydantic-settings>=2.1.0",
"python-dotenv>=1.0.0",
"openpyxl>=3.1.0",
"scipy>=1.12.0",
]
[project.optional-dependencies]
ergm = ["rpy2>=3.5.15"]
all = ["rpy2>=3.5.15"]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.3.0",
]
[project.scripts]
softnet = "backend.main:main"
[tool.setuptools.packages.find]
include = ["backend*"]
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"