forked from sparckles/Robyn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
94 lines (78 loc) · 2.54 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[build-system]
requires = ["maturin>=0.12,<0.13"]
build-backend = "maturin"
[project]
name = "robyn"
version = "0.41.1"
description = "A High-Performance, Community-Driven, and Innovator Friendly Web Framework with a Rust runtime."
authors = [{ name = "Sanskar Jethi", email = "[email protected]" }]
repository = "https://github.com/sparckles/robyn"
documentation = "https://robyn.tech/"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
'watchdog == 2.2.1',
'multiprocess == 0.70.14',
'nestd == 0.3.1',
'inquirerpy == 0.3.4',
# conditional
"uvloop~=0.17.0; sys_platform != 'win32' and platform_python_implementation == 'CPython' and platform_machine != 'armv7l'"
]
[project.optional-dependencies]
"templating" = ["jinja2 == 3.0.1"]
[project.urls]
Issues = "https://github.com/sparckles/robyn/issues"
Changelog = "https://github.com/sparckles/robyn/blob/main/CHANGELOG.md"
[tool.poetry]
name = "robyn"
version = "0.41.1"
description = "A High-Performance, Community-Driven, and Innovator Friendly Web Framework with a Rust runtime."
authors = ["Sanskar Jethi <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.8"
inquirerpy = "0.3.4"
maturin = "0.14.12"
watchdog = "2.2.1"
multiprocess = "0.70.14"
nestd = "0.3.1"
uvloop = { version = "0.17.0", markers = "sys_platform != 'win32' and (sys_platform != 'cygwin' and platform_python_implementation != 'PyPy')" }
jinja2 = { version = "3.0.1", optional = true }
[tool.poetry.extras]
templating = ["jinja2"]
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
ruff = "0.0.240"
black = "23.1"
isort = "5.11.5"
pre-commit = "2.21.0"
commitizen = "2.40"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
requests = "2.28.2"
pytest = "7.2.1"
websocket-client = "1.5.0"
pytest-codspeed = "1.2.2"
[tool.poetry.scripts]
test_server = { callable = "integration_tests.base_routes:main" }
[tool.ruff]
line-length = 160
exclude = ["src/*", ".git", "docs"]
[tool.ruff.mccabe]
max-complexity = 10
[tool.maturin]
module-name = "robyn"