Skip to content

Commit

Permalink
Update setup.py and release to PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
chhsiao90 committed Jul 6, 2016
1 parent 7425484 commit cea5abd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -2,3 +2,4 @@
*.pyc
*.egg-info/
dist/
build/
6 changes: 3 additions & 3 deletions setup.py
@@ -1,9 +1,9 @@
from setuptools import setup
from setuptools import setup, find_packages


setup(
name="gviewer",
version="0.2.0",
version="1.0.0",
description="General Viewer",
author="chhsiao90",
author_email="chhsiao90@gmail.com",
Expand All @@ -26,7 +26,7 @@
"Topic :: Internet :: Proxy Servers",
"Topic :: Software Development :: Testing"
],
packages=["gviewer"],
packages=find_packages(include=["gviewer", "gviewer.*"]),
install_requires=[
"urwid==1.3.1"
]
Expand Down

0 comments on commit cea5abd

Please sign in to comment.