summaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorUltrabug <ultrabug@gentoo.org>2013-04-19 17:33:54 +0200
committerUltrabug <ultrabug@gentoo.org>2013-04-19 17:33:54 +0200
commit9294db752fc5b448200475953b51ee145d2b3e15 (patch)
tree1392d58c09633cbe3102f3a6c1c5e0827324fabb /setup.py
parentbf0184f3d00c8672afd06cf08af1fddf0ea645a9 (diff)
fix setup for pypi, version 0.100.10
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/setup.py b/setup.py
index 22ac12c..3220403 100755
--- a/setup.py
+++ b/setup.py
@@ -14,16 +14,18 @@ def read(fname):
setup(
name='py3status',
- version='0.9',
- url='https://github.com/ultrabug/py3status/wiki',
- download_url='https://github.com/ultrabug/py3status',
- license='BSD',
+ version='0.10',
author='Ultrabug',
author_email='ultrabug@ultrabug.net',
description='py3status is an extensible i3status wrapper written in python',
- long_description=read('README.md'),
+ long_description=read('README.rst'),
+ url='https://github.com/ultrabug/py3status',
+ download_url='https://github.com/ultrabug/py3status/tags',
+ license='BSD',
platforms='any',
packages=find_packages(),
+ include_package_data=True,
+ install_requires=[],
entry_points={
'console_scripts': [
'py3status = py3status:main',