Skip to content

Commit 8a241fd

Browse files
committed
Modified dist info
1 parent e033050 commit 8a241fd

4 files changed

Lines changed: 16 additions & 4 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
venv/
22
.vscode/
33
*.pyc
4-
rogit.egg-info
4+
rogit.egg-info
5+
dist/

deploy.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
python3 setup.py sdist
2+
twine upload dist/*

dist/rogit-1.0.tar.gz

-2.05 KB
Binary file not shown.

setup.py

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,28 @@
11
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"
29

310
setup(
411
name="rogit",
5-
version="1.0",
12+
version=version,
613
license="MIT",
714
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",
817
author="roeeyn",
918
author_email="rodrigo.medina.neri@gmail.com",
1019
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",
1221
keywords=["git", "automation"],
1322
py_modules=["app"],
1423
install_requires=["Click",],
1524
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
1726
"Intended Audience :: Developers", # Define that your audience are developers
1827
"Topic :: Software Development :: Build Tools",
1928
"License :: OSI Approved :: MIT License", # Again, pick a license

0 commit comments

Comments
 (0)