Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7262b67

Browse files
author
Chris Glass
committed
Changed setup.py to reflect new package structure
1 parent 3bd1ca3 commit 7262b67

File tree

1 file changed

+10
-18
lines changed

1 file changed

+10
-18
lines changed

setup.py

Lines changed: 10 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,6 @@
1515
# See the License for the specific language governing permissions and
1616
# limitations under the License.
1717

18-
__version__ = "$Revision: 247 $"
19-
__author__ = "$Author: holtwick $"
20-
__date__ = "$Date: 2008-08-15 13:37:57 +0200 (Fr, 15 Aug 2008) $"
21-
__svnid__ = "$Id: setup.py 247 2008-08-15 11:37:57Z holtwick $"
22-
2318
try:
2419
from setuptools import setup
2520
except ImportError:
@@ -28,7 +23,7 @@
2823

2924
setup(
3025
name="xhtml2pdf",
31-
version="0.0.0",
26+
version="0.0.1",
3227
description="PDF generator using HTML and CSS",
3328
license="Apache License 2.0",
3429
author="Dirk Holtwick",
@@ -44,21 +39,18 @@
4439
include_package_data = False,
4540

4641
packages = [
47-
'ho',
48-
'ho.pisa',
49-
'sx',
50-
'sx.pisa3',
51-
'sx.w3c',
42+
'xhtml2pdf',
43+
'xhtml2pdf.w3c',
5244
],
5345

54-
test_suite = "tests",
46+
# test_suite = "tests", They're not even working yet
5547

56-
entry_points = {
57-
'console_scripts': [
58-
'pisa = sx.pisa3:command',
59-
'xhtml2pdf = sx.pisa3:command',
60-
]
61-
},
48+
# entry_points = {
49+
# 'console_scripts': [
50+
# 'pisa = sx.pisa3:command',
51+
# 'xhtml2pdf = sx.pisa3:command',
52+
# ]
53+
# },
6254

6355
long_description = """
6456
pisa is a html2pdf converter using the ReportLab Toolkit,

0 commit comments

Comments
 (0)