Skip to content

Commit

Permalink
Changed setup.py to reflect new package structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Glass committed May 20, 2011
1 parent 3bd1ca3 commit 7262b67
Showing 1 changed file with 10 additions and 18 deletions.
28 changes: 10 additions & 18 deletions setup.py
Expand Up @@ -15,11 +15,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "$Revision: 247 $"
__author__ = "$Author: holtwick $"
__date__ = "$Date: 2008-08-15 13:37:57 +0200 (Fr, 15 Aug 2008) $"
__svnid__ = "$Id: setup.py 247 2008-08-15 11:37:57Z holtwick $"

try:
from setuptools import setup
except ImportError:
Expand All @@ -28,7 +23,7 @@

setup(
name="xhtml2pdf",
version="0.0.0",
version="0.0.1",
description="PDF generator using HTML and CSS",
license="Apache License 2.0",
author="Dirk Holtwick",
Expand All @@ -44,21 +39,18 @@
include_package_data = False,

packages = [
'ho',
'ho.pisa',
'sx',
'sx.pisa3',
'sx.w3c',
'xhtml2pdf',
'xhtml2pdf.w3c',
],

test_suite = "tests",
# test_suite = "tests", They're not even working yet

entry_points = {
'console_scripts': [
'pisa = sx.pisa3:command',
'xhtml2pdf = sx.pisa3:command',
]
},
# entry_points = {
# 'console_scripts': [
# 'pisa = sx.pisa3:command',
# 'xhtml2pdf = sx.pisa3:command',
# ]
# },

long_description = """
pisa is a html2pdf converter using the ReportLab Toolkit,
Expand Down

0 comments on commit 7262b67

Please sign in to comment.