Skip to content

Commit

Permalink
Modified dist info
Browse files Browse the repository at this point in the history
  • Loading branch information
roeeyn committed Jun 9, 2020
1 parent e033050 commit 8a241fd
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
venv/
.vscode/
*.pyc
rogit.egg-info
rogit.egg-info
dist/
2 changes: 2 additions & 0 deletions deploy.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
python3 setup.py sdist
twine upload dist/*
Binary file removed dist/rogit-1.0.tar.gz
Binary file not shown.
15 changes: 12 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,28 @@
from setuptools import setup
from os import path

this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()

version = "1.3"

setup(
name="rogit",
version="1.0",
version=version,
license="MIT",
description="This is a little git automation for lazy devs. Add, commit and push in one single command.",
long_description=long_description,
long_description_content_type="text/markdown",
author="roeeyn",
author_email="rodrigo.medina.neri@gmail.com",
url="https://github.com/roeeyn/rogit",
download_url="https://github.com/roeeyn/rogit/archive/v_01.tar.gz",
download_url=f"https://github.com/roeeyn/rogit/releases/download/{version}/rogit-{version}.tar.gz",
keywords=["git", "automation"],
py_modules=["app"],
install_requires=["Click",],
classifiers=[
"Development Status :: 3 - Alpha", # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
"Development Status :: 5 - Production/Stable", # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
"Intended Audience :: Developers", # Define that your audience are developers
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License", # Again, pick a license
Expand Down

0 comments on commit 8a241fd

Please sign in to comment.