Skip to content

Commit aa9729f

Browse files
author
amiya
committed
updated readme and pyproject.toml file
1 parent efb671f commit aa9729f

2 files changed

Lines changed: 47 additions & 6 deletions

File tree

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ pip install makeparallel
6262
Or, to build it from the source:
6363
```bash
6464
# Clone the repository
65-
git clone https://github.com/your-username/makeParallel.git
65+
git clone https://github.com/amiyamandal-dev/makeParallel.git
6666
cd makeParallel
6767

6868
# Build and install locally
@@ -639,7 +639,7 @@ Contributions are welcome! If you want to help improve `makeParallel`, please fe
639639
### Development Setup
640640
```bash
641641
# Clone the repository
642-
git clone https://github.com/your-username/makeParallel.git
642+
git clone https://github.com/amiyamandal-dev/makeParallel.git
643643
cd makeParallel
644644

645645
# Create virtual environment
@@ -696,9 +696,10 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
696696

697697
## 📬 Contact & Support
698698

699-
- **Issues**: [GitHub Issues](https://github.com/your-username/makeParallel/issues)
700-
- **Discussions**: [GitHub Discussions](https://github.com/your-username/makeParallel/discussions)
699+
- **Issues**: [GitHub Issues](https://github.com/amiyamandal-dev/makeParallel/issues)
700+
- **Discussions**: [GitHub Discussions](https://github.com/amiyamandal-dev/makeParallel/discussions)
701701
- **PyPI**: [pypi.org/project/makeparallel](https://pypi.org/project/makeparallel/)
702+
- **Author**: Amiya Mandal - [GitHub](https://github.com/amiyamandal-dev)
702703

703704
---
704705

pyproject.toml

Lines changed: 42 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,50 @@ build-backend = "maturin"
44

55
[project]
66
name = "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"
710
requires-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+
]
829
classifiers = [
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

Comments
 (0)