Commit 80572442 authored by Nicolas Delaby's avatar Nicolas Delaby

Modify setup.py according folder structure modifications

parent 4440e3fa
recursive-include src *.xsd
...@@ -9,7 +9,7 @@ def read(name): ...@@ -9,7 +9,7 @@ def read(name):
long_description=( long_description=(
read('README.txt') read('README.txt')
+ '\n\n' + + '\n' +
read('CHANGES.txt') read('CHANGES.txt')
) )
...@@ -29,11 +29,10 @@ setup(name=name, ...@@ -29,11 +29,10 @@ setup(name=name,
maintainer_email='nicolas@nexedi.com', maintainer_email='nicolas@nexedi.com',
url='http://www.python.org/community/sigs/current/xml-sig/', url='http://www.python.org/community/sigs/current/xml-sig/',
license='Python License (CNRI Python License)', license='Python License (CNRI Python License)',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True, include_package_data=True,
zip_safe=False, zip_safe=False,
install_requires=['lxml',], install_requires=['lxml',],
entry_points=""" test_suite='xml_marshaller',
# -*- Entry points: -*-
""",
) )
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