diff options
-rw-r--r-- | MANIFEST.in | 5 | ||||
-rw-r--r-- | setup.py | 6 |
2 files changed, 5 insertions, 6 deletions
diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..fe99812 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,5 @@ +include *.txt +include doc/Makefile +include doc/source/*.py +include doc/source/*.rst +include doc/source/*.jpg @@ -15,12 +15,6 @@ setup(name="beautifulsoup4", long_description="""Beautiful Soup sits atop an HTML or XML parser, providing Pythonic idioms for iterating, searching, and modifying the parse tree.""", license="MIT", packages=['bs4', 'bs4.builder', 'bs4.tests'], -# package_data={ -# "bs4": ["doc/source/*.jpg", "doc/source/*.rst", -# "doc/source/*.py", "doc/Makefile"] -# }, -# data_files=[ -# ('', ['COPYING.txt', 'NEWS.txt', 'AUTHORS.txt', 'README.txt'])], cmdclass = {'build_py':build_py}, classifiers=["Development Status :: 4 - Beta", "Intended Audience :: Developers", |