Skip to content

Commit 2ed391e

Browse files
author
Maxim
committedJun 24, 2022
feat: 0.2.0 bump
1 parent 68c2eae commit 2ed391e

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed
 

‎setup.py

+5-6
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,30 @@
77
setup(
88
name='randcrack', # How you named your package folder (MyLib)
99
packages=['randcrack'], # Chose the same as "name"
10-
version='0.1.5', # Start with a small number and increase it with every change you make
10+
version='0.2.0', # Start with a small number and increase it with every change you make
1111
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
1212
description='Predict python\'s random module random generated values',
1313
long_description=long_description,
1414
long_description_content_type="text/markdown",
1515
author='Maxim Kochukov', # Type in your name
1616
author_email='kochukov.ma@gmail.com', # Type in your E-Mail
1717
url='https://github.com/tna0y/Python-random-module-cracker', # Provide either the link to your github
18-
# or to your website
19-
download_url='https://github.com/tna0y/Python-random-module-cracker/archive/0.1.5.tar.gz',
2018
keywords=['random', 'security', 'cryptography', 'cracker', 'encryption'], # Keywords that define your package best
2119
install_requires=[],
2220
classifiers=[
23-
'Development Status :: 3 - Alpha',
21+
'Development Status :: 4 - Beta',
2422
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
2523
'Intended Audience :: Developers', # Define that your audience are developers
2624
'Topic :: Security',
2725
'Topic :: Security :: Cryptography',
2826
'License :: OSI Approved :: MIT License', # Again, pick a license
2927
'Programming Language :: Python :: 3', # Specify which pyhton versions that you want to support
30-
'Programming Language :: Python :: 3.3',
31-
'Programming Language :: Python :: 3.4',
3228
'Programming Language :: Python :: 3.5',
3329
'Programming Language :: Python :: 3.6',
3430
'Programming Language :: Python :: 3.7',
31+
'Programming Language :: Python :: 3.8',
32+
'Programming Language :: Python :: 3.9',
33+
'Programming Language :: Python :: 3.10',
3534
'Programming Language :: Python :: Implementation :: CPython',
3635
],
3736
)

0 commit comments

Comments
 (0)
Failed to load comments.