Skip to content

Commit 09a383b

Browse files
authored
reverted errors
1 parent d936b0b commit 09a383b

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

setup.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@
22

33
import setuptools
44

5-
with open("README.md", "r") as fh:
5+
with open("README", "r") as fh:
66
long_description = fh.read()
77

88
setup(
9-
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
9+
name = 'django_case_insensitive_field', # How you named your package folder (MyLib)
10+
version = '1.0.4', # Start with a small number and increase it with every change you make
1111
license='MIT',
12-
py_modules=["python_easy_rsa"], # Name of the python package # Chose a license from here: https://help.github.com/articles/licensing-a-repository
13-
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!",
12+
py_modules=["django_case_insensitive_field"], # Name of the python package # Chose a license from here: https://help.github.com/articles/licensing-a-repository
13+
description = "Django Case Insensitive Field is used to make Django Model Field case insensitive - by default Django can't do this.",
1414
author = 'iamoracle', # Type in your name
1515
author_email = 'officialbilas@gmail.com', # Type in your E-Mail
1616
long_description=long_description, # Long description read from the the readme file
1717
long_description_content_type="text/markdown",
18-
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
20-
keywords = ['Python', 'RSA', 'Easy', 'generate public key', 'generate private key', 'encrypt', 'decrypt', 'using python'], # Keywords that define your package best
21-
install_requires=['pathlib', 'pycryptodome'],
18+
url = 'https://github.com/iamoracle/django_case_insensitive_field', # Provide either the link to your github or to your website
19+
download_url = 'https://github.com/iamoracle/django_case_insensitive_field/archive/refs/tags/v1.0.4.tar.gz', # I explain this later on
20+
keywords = ['Django', 'Case Insensitive', 'Field', 'How to make Django Field', 'make django case insensitive'], # Keywords that define your package best
21+
install_requires=[],
2222
classifiers=[
2323
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
2424
'Intended Audience :: Developers', # Define that your audience are developers

0 commit comments

Comments
 (0)