Skip to content

Commit

Permalink
Bump version and fix setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdalisue committed Oct 21, 2014
1 parent 098373a commit e8393c0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
@@ -1 +1 @@
README.md
include README.md
10 changes: 6 additions & 4 deletions setup.py
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages

version = "0.1.6"
version = "0.1.7"

def read(filename):
import os.path
Expand All @@ -21,13 +21,15 @@ def read(filename):
keywords = "http clipboard pipe cui viewer",
author = "Alisue",
author_email = "lambdalisue@hashnote.net",
url=r"https://github.com/lambdalisue/reqviewer",
download_url = r"https://github.com/lambdalisue/reqviewer/tarball/master",
url=r"https://github.com/lambdalisue/Shareboard",
download_url = r"https://github.com/lambdalisue/Shareboard/tarball/master",
license = 'MIT',
packages = find_packages('src'),
package_dir = {'': 'src'},
scripts = ['scripts/shareboard'],
include_package_data = True,
package_data = {
'': ['README.rst',],
},
zip_safe = True,
install_requires=['setuptools', 'requests'],
)

0 comments on commit e8393c0

Please sign in to comment.