|
7 | 7 | setup(
|
8 | 8 | name='randcrack', # How you named your package folder (MyLib)
|
9 | 9 | 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 |
11 | 11 | license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
|
12 | 12 | description='Predict python\'s random module random generated values',
|
13 | 13 | long_description=long_description,
|
14 | 14 | long_description_content_type="text/markdown",
|
15 | 15 | author='Maxim Kochukov', # Type in your name
|
16 | 16 | author_email='kochukov.ma@gmail.com', # Type in your E-Mail
|
17 | 17 | 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', |
20 | 18 | keywords=['random', 'security', 'cryptography', 'cracker', 'encryption'], # Keywords that define your package best
|
21 | 19 | install_requires=[],
|
22 | 20 | classifiers=[
|
23 |
| - 'Development Status :: 3 - Alpha', |
| 21 | + 'Development Status :: 4 - Beta', |
24 | 22 | # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
|
25 | 23 | 'Intended Audience :: Developers', # Define that your audience are developers
|
26 | 24 | 'Topic :: Security',
|
27 | 25 | 'Topic :: Security :: Cryptography',
|
28 | 26 | 'License :: OSI Approved :: MIT License', # Again, pick a license
|
29 | 27 | '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', |
32 | 28 | 'Programming Language :: Python :: 3.5',
|
33 | 29 | 'Programming Language :: Python :: 3.6',
|
34 | 30 | 'Programming Language :: Python :: 3.7',
|
| 31 | + 'Programming Language :: Python :: 3.8', |
| 32 | + 'Programming Language :: Python :: 3.9', |
| 33 | + 'Programming Language :: Python :: 3.10', |
35 | 34 | 'Programming Language :: Python :: Implementation :: CPython',
|
36 | 35 | ],
|
37 | 36 | )
|
0 commit comments