File tree Expand file tree Collapse file tree 1 file changed +10
-18
lines changed Expand file tree Collapse file tree 1 file changed +10
-18
lines changed Original file line number Diff line number Diff line change 15
15
# See the License for the specific language governing permissions and
16
16
# limitations under the License.
17
17
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
-
23
18
try :
24
19
from setuptools import setup
25
20
except ImportError :
28
23
29
24
setup (
30
25
name = "xhtml2pdf" ,
31
- version = "0.0.0 " ,
26
+ version = "0.0.1 " ,
32
27
description = "PDF generator using HTML and CSS" ,
33
28
license = "Apache License 2.0" ,
34
29
author = "Dirk Holtwick" ,
44
39
include_package_data = False ,
45
40
46
41
packages = [
47
- 'ho' ,
48
- 'ho.pisa' ,
49
- 'sx' ,
50
- 'sx.pisa3' ,
51
- 'sx.w3c' ,
42
+ 'xhtml2pdf' ,
43
+ 'xhtml2pdf.w3c' ,
52
44
],
53
45
54
- test_suite = "tests" ,
46
+ # test_suite = "tests", They're not even working yet
55
47
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
+ # },
62
54
63
55
long_description = """
64
56
pisa is a html2pdf converter using the ReportLab Toolkit,
You can’t perform that action at this time.
0 commit comments