@@ -4,10 +4,50 @@ build-backend = "maturin"
44
55[project ]
66name = " makeparallel"
7+ version = " 0.1.0"
8+ description = " True parallelism for Python - Bypass the GIL with Rust-powered decorators for CPU-bound tasks"
9+ readme = " README.md"
710requires-python = " >=3.8"
11+ license = { file = " LICENSE" }
12+ authors = [
13+ { name = " Amiya Mandal" , email = " amiya19mandal@gmail.com" }
14+ ]
15+ maintainers = [
16+ { name = " Amiya Mandal" , email = " amiya19mandal@gmail.com" }
17+ ]
18+ keywords = [
19+ " parallel" ,
20+ " concurrency" ,
21+ " gil" ,
22+ " rust" ,
23+ " performance" ,
24+ " threading" ,
25+ " multicore" ,
26+ " cpu-bound" ,
27+ " decorator"
28+ ]
829classifiers = [
9- " Programming Language :: Rust" ,
30+ " Development Status :: 4 - Beta" ,
31+ " Intended Audience :: Developers" ,
32+ " License :: OSI Approved :: MIT License" ,
33+ " Operating System :: OS Independent" ,
34+ " Programming Language :: Python :: 3" ,
35+ " Programming Language :: Python :: 3.8" ,
36+ " Programming Language :: Python :: 3.9" ,
37+ " Programming Language :: Python :: 3.10" ,
38+ " Programming Language :: Python :: 3.11" ,
39+ " Programming Language :: Python :: 3.12" ,
40+ " Programming Language :: Python :: 3.13" ,
1041 " Programming Language :: Python :: Implementation :: CPython" ,
1142 " Programming Language :: Python :: Implementation :: PyPy" ,
43+ " Programming Language :: Rust" ,
44+ " Topic :: Software Development :: Libraries :: Python Modules" ,
45+ " Topic :: System :: Hardware :: Symmetric Multi-processing" ,
1246]
13- dynamic = [" version" ]
47+
48+ [project .urls ]
49+ Homepage = " https://github.com/amiyamandal-dev/makeParallel"
50+ Documentation = " https://github.com/amiyamandal-dev/makeParallel#readme"
51+ Repository = " https://github.com/amiyamandal-dev/makeParallel"
52+ "Bug Tracker" = " https://github.com/amiyamandal-dev/makeParallel/issues"
53+ Changelog = " https://github.com/amiyamandal-dev/makeParallel/releases"
0 commit comments