-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 895 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 895 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
[project]
name = "seattle-source-ranker"
version = "1.0.0"
description = "Discover and rank open source projects from Seattle's tech community"
readme = "README.md"
requires-python = ">=3.11"
license = "Apache-2.0"
authors = [ { name = "thomas0829" } ]
dependencies = [
"requests>=2.31.0",
"tqdm>=4.66.0",
"celery[redis]>=5.3.4",
"flower>=2.0.1",
"redis>=5.0.1",
"psycopg2-binary>=2.9.9",
"sqlalchemy>=2.0.23",
"sqlmodel>=0.0.14",
"fastapi>=0.104.1",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.5.0",
"pytest>=7.4.3",
"pytest-asyncio>=0.21.1",
"pytest-cov>=4.1.0",
"pandas>=2.0.0",
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["seattle_source_ranker", "seattle_source_ranker.collector"]
[tool.setuptools.package-data]
seattle_source_ranker = ["*.json"]