|
1 | 1 | from setuptools import setup |
| 2 | +from os import path |
| 3 | + |
| 4 | +this_directory = path.abspath(path.dirname(__file__)) |
| 5 | +with open(path.join(this_directory, "README.md"), encoding="utf-8") as f: |
| 6 | + long_description = f.read() |
| 7 | + |
| 8 | +version = "1.3" |
2 | 9 |
|
3 | 10 | setup( |
4 | 11 | name="rogit", |
5 | | - version="1.0", |
| 12 | + version=version, |
6 | 13 | license="MIT", |
7 | 14 | description="This is a little git automation for lazy devs. Add, commit and push in one single command.", |
| 15 | + long_description=long_description, |
| 16 | + long_description_content_type="text/markdown", |
8 | 17 | author="roeeyn", |
9 | 18 | author_email="rodrigo.medina.neri@gmail.com", |
10 | 19 | url="https://github.com/roeeyn/rogit", |
11 | | - download_url="https://github.com/roeeyn/rogit/archive/v_01.tar.gz", |
| 20 | + download_url=f"https://github.com/roeeyn/rogit/releases/download/{version}/rogit-{version}.tar.gz", |
12 | 21 | keywords=["git", "automation"], |
13 | 22 | py_modules=["app"], |
14 | 23 | install_requires=["Click",], |
15 | 24 | classifiers=[ |
16 | | - "Development Status :: 3 - Alpha", # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package |
| 25 | + "Development Status :: 5 - Production/Stable", # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package |
17 | 26 | "Intended Audience :: Developers", # Define that your audience are developers |
18 | 27 | "Topic :: Software Development :: Build Tools", |
19 | 28 | "License :: OSI Approved :: MIT License", # Again, pick a license |
|
0 commit comments