-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (39 loc) · 1.08 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
# Configuration based on tutorial at
# https://packaging.python.org/en/latest/tutorials/packaging-projects/
[project]
name = "find"
version = "0.0.8-dev"
description = "find CLI"
authors = [
{ name="Giovanni Giorgi", email="jj@gioorgi.com" },
]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"beautifulsoup4>=4.14.3",
"aiohttp==3.13.4",
"aiosqlite==0.22.1",
"Flask>=3.1.2",
"click>=8.3.1",
"Flask-Limiter>=3.5.0",
"gunicorn>=23.0.0"
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
[projects.urls]
Homepage = "https://github.com/daitangio/find"
Issues = "https://github.com/daitangio/find/issues"
[project.scripts]
crawl="find.crawl:crawl_init"
findgui="find.app:web_run"
reindex="find.reindex:main"
delete-pages="find.delete_pages:main"
[build-system]
# Flit Core is a lightweight tool designed to simplify the process of packaging and distributing Python projects
# following PEP 517
requires = ["flit_core<4"]
build-backend = "flit_core.buildapi"