-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.47 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (54 loc) · 1.47 KB
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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "social-database"
version = "0.8.2"
description = "Merge, preserve, and search historical group member data."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "马骏珩" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
"Topic :: Database",
]
dependencies = [
"SQLAlchemy>=2.0,<3.0",
"openpyxl>=3.1,<4.0",
]
[project.optional-dependencies]
server = [
"fastapi>=0.115,<1.0",
"uvicorn>=0.30,<1.0",
]
dev = [
"build>=1.5,<2.0",
"fastapi>=0.115,<1.0",
"httpx2>=2.0,<3.0",
"pytest>=8.0,<10.0",
"uvicorn>=0.30,<1.0",
]
[project.urls]
Homepage = "https://github.com/tntexploding/SocialDatabase"
Repository = "https://github.com/tntexploding/SocialDatabase"
Issues = "https://github.com/tntexploding/SocialDatabase/issues"
[project.scripts]
social-database = "social_database.cli:main"
[tool.setuptools.packages.find]
include = ["social_database*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
addopts = "-p no:cacheprovider"
tmp_path_retention_count = 0
tmp_path_retention_policy = "none"