Commit 3b2aa6e4 authored by Vincent Pelletier's avatar Vincent Pelletier

setup.py: Use README.rst as long description.

Also, declare zip-safety.
Also, switch to setuptools.
parent 597bbe69
from distutils.core import setup
from setuptools import setup
from os.path import join, dirname
description = open(join(dirname(__file__), 'README.rst')).read()
setup(
name='xfw',
version='0.9',
description='eXtensible Fixed-Width file handling module',
long_description='.. contents::\n\n' + description,
keywords='fixed width field file',
author='Nexedi',
author_email='erp5-dev@erp5.org',
......@@ -16,5 +20,5 @@ setup(
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
],
zip_safe=True,
)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment