-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (63 loc) · 1.88 KB
/
pyproject.toml
File metadata and controls
69 lines (63 loc) · 1.88 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
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pydevcheat"
version = "1.0.0"
authors = [
{name = "Eliran Cohen", email = "elirancv@gmail.com"},
]
description = "A modern cheat sheet application for developers"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
dependencies = [
"httpx>=0.28.1",
"pyyaml>=6.0.1",
"rich>=13.7.0",
"typer>=0.9.0",
"beautifulsoup4>=4.12.2",
"pyperclip>=1.8.2",
"PyQt6>=6.5.0,<6.9.0",
"PyQt6-Qt6>=6.5.0,<6.7.0",
"PyQt6-sip>=13.5.0",
"qt-material>=2.14",
"markdown2>=2.4.0",
"pygments>=2.15.0",
"tenacity>=8.2.3"
]
[project.urls]
Homepage = "https://github.com/elirancv/PyDevCheat"
Repository = "https://github.com/elirancv/PyDevCheat.git"
"Bug Tracker" = "https://github.com/elirancv/PyDevCheat/issues"
Documentation = "https://github.com/elirancv/PyDevCheat#readme"
[project.scripts]
pydevcheat = "pydevcheat.main:app"
[tool.setuptools]
packages = ["pydevcheat"]
[tool.setuptools.package-data]
pydevcheat = ["assets/*", "assets/icons/*", "assets/docs/*"]
[tool.black]
line-length = 100
target-version = ['py39']
include = '\.pyi?$'
extend-exclude = '''
# A regex preceded with ^/ will apply only to files and directories
# in the root of the project.
^/tests/
'''