|
| 1 | +from setuptools import setup, find_packages |
| 2 | + |
| 3 | +setup( |
| 4 | + name="compressedcrack", |
| 5 | + version="1.0.3", |
| 6 | + description="A command-line tool to crack password-protected compressed files using brute force.", |
| 7 | + long_description=open("README.md").read(), |
| 8 | + long_description_content_type="text/markdown", |
| 9 | + author="Minh Thanh", |
| 10 | + |
| 11 | + url="https://github.com/mnismt/CompressedCrack", |
| 12 | + packages=find_packages(), |
| 13 | + classifiers=[ |
| 14 | + "Development Status :: 3 - Alpha", |
| 15 | + "Intended Audience :: Developers", |
| 16 | + "License :: OSI Approved :: MIT License", |
| 17 | + "Programming Language :: Python :: 3", |
| 18 | + "Programming Language :: Python :: 3.6", |
| 19 | + "Programming Language :: Python :: 3.7", |
| 20 | + "Programming Language :: Python :: 3.8", |
| 21 | + "Programming Language :: Python :: 3.9", |
| 22 | + ], |
| 23 | + keywords=["brute force", "password cracking", "compressed files"], |
| 24 | + install_requires=["patool>=2.2.0", "click"], |
| 25 | + python_requires=">=3.6", |
| 26 | + entry_points={ |
| 27 | + "console_scripts": [ |
| 28 | + "compressedcrack = compressedcrack.main:main" |
| 29 | + ] |
| 30 | + }, |
| 31 | + license="MIT", |
| 32 | +) |
0 commit comments