1
1
[build-system ]
2
- requires = [" setuptools>=61.0" ]
2
+ requires = [" setuptools>=61.0" , " wheel " ]
3
3
build-backend = " setuptools.build_meta"
4
4
5
5
[project ]
6
6
name = " pydevcheat"
7
- version = " 0.1.0"
7
+ version = " 1.0.0"
8
+ authors = [
9
+ {
name =
" Eliran Cohen" ,
email =
" [email protected] " },
10
+ ]
8
11
description = " A modern cheat sheet application for developers"
12
+ readme = " README.md"
9
13
requires-python = " >=3.8"
14
+ license = {text = " MIT" }
15
+ classifiers = [
16
+ " Development Status :: 3 - Alpha" ,
17
+ " Environment :: Console" ,
18
+ " Environment :: X11 Applications :: Qt" ,
19
+ " Intended Audience :: Developers" ,
20
+ " License :: OSI Approved :: MIT License" ,
21
+ " Operating System :: OS Independent" ,
22
+ " Programming Language :: Python :: 3" ,
23
+ " Programming Language :: Python :: 3.8" ,
24
+ " Programming Language :: Python :: 3.9" ,
25
+ " Programming Language :: Python :: 3.10" ,
26
+ " Programming Language :: Python :: 3.11" ,
27
+ " Topic :: Software Development :: Documentation" ,
28
+ " Topic :: Software Development :: Libraries :: Python Modules" ,
29
+ " Topic :: Utilities" ,
30
+ ]
10
31
dependencies = [
11
32
" httpx>=0.28.1" ,
12
33
" pyyaml>=6.0.1" ,
@@ -23,5 +44,17 @@ dependencies = [
23
44
" tenacity>=8.2.3"
24
45
]
25
46
47
+ [project .urls ]
48
+ Homepage = " https://github.com/elirancv/PyDevCheat"
49
+ Repository = " https://github.com/elirancv/PyDevCheat.git"
50
+ "Bug Tracker" = " https://github.com/elirancv/PyDevCheat/issues"
51
+ Documentation = " https://github.com/elirancv/PyDevCheat#readme"
52
+
26
53
[project .scripts ]
27
- pydevcheat = " pydevcheat.main:app"
54
+ pydevcheat = " pydevcheat.main:app"
55
+
56
+ [tool .setuptools ]
57
+ packages = [" pydevcheat" ]
58
+
59
+ [tool .setuptools .package-data ]
60
+ pydevcheat = [" assets/*" , " assets/icons/*" , " assets/docs/*" ]
0 commit comments