summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonard Richardson <leonard.richardson@canonical.com>2012-02-20 13:04:30 -0500
committerLeonard Richardson <leonard.richardson@canonical.com>2012-02-20 13:04:30 -0500
commitdfee19c40373d420ca8951e82fb25c14f8fcc163 (patch)
treec9e7b689510f2a14cd839cdea0b2dfb689e222ba
parent328c7160becd6958b2d40019637e578440d78145 (diff)
downloadbeautifulsoup4-dfee19c40373d420ca8951e82fb25c14f8fcc163.tar.gz
Use MANIFEST.in instead of setup.py to hold the docs and text files.
-rw-r--r--MANIFEST.in5
l---------doc1
-rw-r--r--doc/Makefile (renamed from bs4/doc/Makefile)0
-rw-r--r--doc/source/6.1.jpg (renamed from bs4/doc/source/6.1.jpg)bin22619 -> 22619 bytes
-rw-r--r--doc/source/conf.py (renamed from bs4/doc/source/conf.py)0
-rw-r--r--doc/source/index.rst (renamed from bs4/doc/source/index.rst)0
-rw-r--r--setup.py6
7 files changed, 5 insertions, 7 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
diff --git a/doc b/doc
deleted file mode 120000
index 43a5bc0..0000000
--- a/doc
+++ /dev/null
@@ -1 +0,0 @@
-bs4/doc/ \ No newline at end of file
diff --git a/bs4/doc/Makefile b/doc/Makefile
index 8c833d2..8c833d2 100644
--- a/bs4/doc/Makefile
+++ b/doc/Makefile
diff --git a/bs4/doc/source/6.1.jpg b/doc/source/6.1.jpg
index 97014f0..97014f0 100644
--- a/bs4/doc/source/6.1.jpg
+++ b/doc/source/6.1.jpg
Binary files differ
diff --git a/bs4/doc/source/conf.py b/doc/source/conf.py
index 56c0939..56c0939 100644
--- a/bs4/doc/source/conf.py
+++ b/doc/source/conf.py
diff --git a/bs4/doc/source/index.rst b/doc/source/index.rst
index 0467c00..0467c00 100644
--- a/bs4/doc/source/index.rst
+++ b/doc/source/index.rst
diff --git a/setup.py b/setup.py
index 49b82fb..46d5ff2 100644
--- a/setup.py
+++ b/setup.py
@@ -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",