forked from gridhead/syncstar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (56 loc) · 1.84 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
[tool.poetry]
name = "syncstar"
version = "0.1.0a1"
description = "Create bootable USB drives at the convenience of any headless device"
authors = ["Akashdeep Dhar <[email protected]>"]
license = "GPL-3.0-or-later"
maintainers = ["Akashdeep Dhar <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/gridhead/syncstar"
repository = "https://github.com/gridhead/syncstar"
documentation = "https://github.com/gridhead/syncstar/blob/main/README.md"
keywords = [""]
classifiers= [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
"Framework :: Celery",
"Framework :: Flask",
"Topic :: Security :: Cryptography",
"Topic :: System :: Networking",
"Topic :: System :: Monitoring",
"Topic :: System :: Operating System",
"Topic :: System :: Hardware :: Universal Serial Bus (USB)",
"Topic :: System :: Hardware :: Universal Serial Bus (USB) :: Mass Storage",
]
[tool.poetry.dependencies]
python = ">=3.8,<4"
click = ">=8.0.0,<9"
flask = ">=3.0.0"
pyudev = "^0.24.3"
pyyaml = "^6.0.1"
celery = "^5.4.0"
redis = "^5.0.4"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.3 || ^8.0.0"
pytest-cov = "^4.1.0 || ^5.0.0"
ruff = "^0.2.0 || ^0.3.0"
tox = "^4.0.0"
vcrpy = "^5.1.0 || ^6.0.0"
pytest-recording = "^0.13.0"
[tool.ruff]
line-length = 100
fix = true
[tool.ruff.lint]
select = ["E", "F", "W", "I", "S", "B", "UP"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
syncstar = "syncstar.main:main"