Skip to content

Commit e36e4c4

Browse files
authored
version 1.0.1
1 parent 869fdf7 commit e36e4c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name = 'python_easy_rsa', # How you named your package folder (MyLib)
10-
version = '1.0.0', # Start with a small number and increase it with every change you make
10+
version = '1.0.1', # Start with a small number and increase it with every change you make
1111
license='MIT',
1212
py_modules=["python_easy_rsa"], # Name of the python package # Chose a license from here: https://help.github.com/articles/licensing-a-repository
1313
description = "Python Easy RSA is a wrapper that allows decryption, encryption, signing, and verifying signature simpler. You can load your keys from a file or from a string. It is easy to use, fast and free!",
@@ -16,7 +16,7 @@
1616
long_description=long_description, # Long description read from the the readme file
1717
long_description_content_type="text/markdown",
1818
url = 'https://github.com/iamoracle/python-easy-rsa', # Provide either the link to your github or to your website
19-
download_url = 'https://github.com/iamoracle/python-easy-rsa/archive/refs/tags/v1.0.0.tar.gz', # I explain this later on
19+
download_url = 'https://github.com/iamoracle/python-easy-rsa/archive/refs/tags/v1.0.1.tar.gz', # I explain this later on
2020
keywords = ['Python', 'RSA', 'Easy', 'generate public key', 'generate private key', 'encrypt', 'decrypt', 'using python'], # Keywords that define your package best
2121
install_requires=['pathlib', 'pycryptodome'],
2222
classifiers=[

0 commit comments

Comments
 (0)