-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
executable file
·55 lines (45 loc) · 1.46 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=40.6.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "porthouse"
version = "0.2.2"
description = "Websocket mesh"
authors = [{name = "Strangemother", email = "[email protected]"}]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.8"
keywords = ["websockets", "mesh"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["dependencies"]
# dependencies = [
# # "fastapi",
# # 'loguru',
# # 'websockets',
# ]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {dev = { file = ["requirements-dev.txt"] }}
# dynamic = ["version"]
# Optional: If you have any package data or scripts to include
# [tool.setuptools]
# packages = { find = { include = ["src"] } }
# [tool.setuptools]
# packages = ["src/porthouse"]
# [tool.setuptools.packages.find]
# where = ["src"] # the package is in src/toto/ now
# include_package_data = true
# scripts = [
# Scripts to include
# ]
# [project.optional-dependencies]
# pdf = ["ReportLab>=1.2", "RXP"]
# rest = ["docutils>=0.3", "pack ==1.1, ==1.3"]
[project.scripts]
porthouse = "porthouse.cli:run"
# ... other project metadata fields as specified in:
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/