Skip to content

Commit

Permalink
Updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
rshk committed Jul 3, 2014
1 parent 462cbd6 commit f21575a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
from setuptools import setup, find_packages

version = '0.1a'
version = '0.1.1a'

with open('README.rst') as fp:
longdesc = fp.read()


setup(
Expand All @@ -12,7 +15,7 @@
author='Samuele Santi',
author_email='redshadow@hackzine.org',
description='',
long_description='',
long_description=longdesc,
install_requires=[],
# tests_require=tests_require,
# test_suite='tests',
Expand All @@ -30,6 +33,6 @@
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
package_data={'': ['README.md', 'LICENSE']},
package_data={'': ['README.rst']},
include_package_data=True,
zip_safe=False)

0 comments on commit f21575a

Please sign in to comment.