|
2 | 2 |
|
3 | 3 | import setuptools |
4 | 4 |
|
5 | | -with open("README.md", "r") as fh: |
| 5 | +with open("README", "r") as fh: |
6 | 6 | long_description = fh.read() |
7 | 7 |
|
8 | 8 | 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 |
11 | 11 | 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.", |
14 | 14 | author = 'iamoracle', # Type in your name |
15 | 15 | author_email = 'officialbilas@gmail.com', # Type in your E-Mail |
16 | 16 | long_description=long_description, # Long description read from the the readme file |
17 | 17 | 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=[], |
22 | 22 | classifiers=[ |
23 | 23 | 'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package |
24 | 24 | 'Intended Audience :: Developers', # Define that your audience are developers |
|
0 commit comments