Skip to content

Commit cea5abd

Browse files
committed
Update setup.py and release to PyPI
1 parent 7425484 commit cea5abd

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
*.pyc
33
*.egg-info/
44
dist/
5+
build/

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
from setuptools import setup
1+
from setuptools import setup, find_packages
22

33

44
setup(
55
name="gviewer",
6-
version="0.2.0",
6+
version="1.0.0",
77
description="General Viewer",
88
author="chhsiao90",
99
author_email="[email protected]",
@@ -26,7 +26,7 @@
2626
"Topic :: Internet :: Proxy Servers",
2727
"Topic :: Software Development :: Testing"
2828
],
29-
packages=["gviewer"],
29+
packages=find_packages(include=["gviewer", "gviewer.*"]),
3030
install_requires=[
3131
"urwid==1.3.1"
3232
]

0 commit comments

Comments
 (0)