Skip to content

Commit a208d02

Browse files
committed
fix 2.0.6
2 parents 00eb112 + effea40 commit a208d02

File tree

3 files changed

+44
-12
lines changed

3 files changed

+44
-12
lines changed

.github/workflows/pypi.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1+
<<<<<<< HEAD
12
name: fastCrypter Package
3+
=======
4+
name: fastCrypt Package
5+
>>>>>>> effea408f2558a5fdf88636391c048f9d0af520d
26

37
on:
48
push:
@@ -29,7 +33,11 @@ jobs:
2933
run: |
3034
python -m pip install --upgrade pip
3135
pip install setuptools wheel twine
36+
<<<<<<< HEAD
3237

38+
=======
39+
40+
>>>>>>> effea408f2558a5fdf88636391c048f9d0af520d
3341
- name: Lint with flake8
3442
run: |
3543
pip install flake8
@@ -39,7 +47,11 @@ jobs:
3947
publish:
4048
needs: build
4149
runs-on: ubuntu-latest
50+
<<<<<<< HEAD
4251

52+
=======
53+
54+
>>>>>>> effea408f2558a5fdf88636391c048f9d0af520d
4355
if: github.event_name == 'workflow_dispatch'
4456

4557
steps:
@@ -77,7 +89,11 @@ jobs:
7789
git diff --staged --quiet || git commit -m "🔖 Bump version [automated]"
7890
git push origin main
7991
92+
<<<<<<< HEAD
8093
- name: Build fastCrypter Package
94+
=======
95+
- name: Build fastCrypt Package
96+
>>>>>>> effea408f2558a5fdf88636391c048f9d0af520d
8197
run: |
8298
python setup.py sdist bdist_wheel
8399

fastcrypt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
License: MIT
1111
"""
1212

13-
__version__ = "2.0.3"
13+
__version__ = "2.0.6"
1414
__author__ = "Mmdrza"
1515
__email__ = "[email protected]"
1616
__license__ = "MIT"

setup.py

Lines changed: 27 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,22 @@
88

99
# Read README file
1010
readme_file = Path(__file__).parent / "README.md"
11-
long_description = readme_file.read_text(encoding="utf-8") if readme_file.exists() else ""
11+
long_description = (
12+
readme_file.read_text(encoding="utf-8") if readme_file.exists() else ""
13+
)
1214

1315
# Read requirements
1416
requirements_file = Path(__file__).parent / "requirements.txt"
1517
requirements = []
1618
if requirements_file.exists():
17-
requirements = requirements_file.read_text(encoding="utf-8").strip().split('\n')
18-
requirements = [req.strip() for req in requirements if req.strip() and not req.startswith('#')]
19+
requirements = requirements_file.read_text(encoding="utf-8").strip().split("\n")
20+
requirements = [
21+
req.strip() for req in requirements if req.strip() and not req.startswith("#")
22+
]
1923

2024
setup(
21-
name="fastCrypter",
22-
version="2.0.3",
25+
name="fastcrypter",
26+
version="2.0.6",
2327
author="Mmdrza",
2428
author_email="[email protected]",
2529
description="Professional compression and encryption library with native C/C++ acceleration",
@@ -60,7 +64,7 @@
6064
"native": [
6165
"numpy>=1.24.0",
6266
"cython>=3.0.0",
63-
]
67+
],
6468
},
6569
entry_points={
6670
"console_scripts": [
@@ -71,19 +75,31 @@
7175
package_data={
7276
"fastCrypter": [
7377
"native/libs/*/*.so",
74-
"native/libs/*/*.dll",
78+
"native/libs/*/*.dll",
7579
"native/libs/*/*.dylib",
7680
"*.md",
7781
],
7882
},
7983
keywords=[
80-
"encryption", "compression", "security", "cryptography",
81-
"aes", "chacha20", "rsa", "zlib", "lzma", "brotli",
82-
"native", "performance", "c++", "custom-encoding", "fast"
84+
"encryption",
85+
"compression",
86+
"security",
87+
"cryptography",
88+
"aes",
89+
"chacha20",
90+
"rsa",
91+
"zlib",
92+
"lzma",
93+
"brotli",
94+
"native",
95+
"performance",
96+
"c++",
97+
"custom-encoding",
98+
"fast",
8399
],
84100
project_urls={
85101
"Bug Reports": "https://github.com/Pymmdrza/fastCrypter/issues",
86102
"Source": "https://github.com/Pymmdrza/fastCrypter",
87103
"Documentation": "https://fastCrypter.readthedocs.io/",
88104
},
89-
)
105+
)

0 commit comments

Comments
 (0)