Linha | |
---|
1 | from setuptools import setup, find_packages |
---|
2 | import os |
---|
3 | |
---|
4 | version = '1.0' |
---|
5 | |
---|
6 | setup(name='il.spdo', |
---|
7 | version=version, |
---|
8 | description="SPDO", |
---|
9 | long_description=open("README.txt").read() + "\n" + |
---|
10 | open(os.path.join("docs", "HISTORY.txt")).read(), |
---|
11 | # Get more strings from |
---|
12 | # http://pypi.python.org/pypi?:action=list_classifiers |
---|
13 | classifiers=[ |
---|
14 | "Framework :: Plone", |
---|
15 | "Programming Language :: Python", |
---|
16 | ], |
---|
17 | keywords='', |
---|
18 | author='', |
---|
19 | author_email='', |
---|
20 | url='http://svn.plone.org/svn/collective/', |
---|
21 | license='GPL', |
---|
22 | packages=find_packages(exclude=['ez_setup']), |
---|
23 | namespace_packages=['il'], |
---|
24 | include_package_data=True, |
---|
25 | zip_safe=False, |
---|
26 | install_requires=[ |
---|
27 | 'setuptools', |
---|
28 | 'plone.app.theming', |
---|
29 | 'five.grok', |
---|
30 | 'plone.app.z3cform', |
---|
31 | 'xhtml2pdf', |
---|
32 | 'z3c.saconfig', |
---|
33 | 'MySQL-python', |
---|
34 | 'plone.formwidget.multifile', |
---|
35 | 'plone.directives.form', |
---|
36 | # -*- Extra requirements: -*- |
---|
37 | ], |
---|
38 | entry_points=""" |
---|
39 | # -*- Entry points: -*- |
---|
40 | |
---|
41 | [z3c.autoinclude.plugin] |
---|
42 | target = plone |
---|
43 | """, |
---|
44 | setup_requires=["PasteScript"], |
---|
45 | paster_plugins=["ZopeSkel"], |
---|
46 | ) |
---|
Note: Veja
TracBrowser
para ajuda no uso do navegador do trac.