Rev | Line | |
---|
[4211] | 1 | from setuptools import setup, find_packages |
---|
| 2 | |
---|
| 3 | version = '1.1' |
---|
| 4 | |
---|
| 5 | setup(name='akademie.theme', |
---|
| 6 | version=version, |
---|
| 7 | description="Plone theme in blue/grey colors", |
---|
| 8 | long_description="""\ |
---|
| 9 | """, |
---|
| 10 | # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers |
---|
| 11 | classifiers=[ |
---|
| 12 | "Framework :: Plone", |
---|
| 13 | "Framework :: Zope2", |
---|
| 14 | "Framework :: Zope3", |
---|
| 15 | "Programming Language :: Python", |
---|
| 16 | "Topic :: Software Development", |
---|
| 17 | ], |
---|
| 18 | keywords='akademie ee plone zope theme', |
---|
| 19 | author='Henrik Bettermann', |
---|
| 20 | author_email='henrik@waeup.org', |
---|
| 21 | url='http://www.akademie-ee.de', |
---|
| 22 | license='GPL', |
---|
| 23 | packages=find_packages(exclude=['ez_setup']), |
---|
| 24 | namespace_packages=['akademie'], |
---|
| 25 | include_package_data=True, |
---|
| 26 | zip_safe=False, |
---|
| 27 | install_requires=[ |
---|
| 28 | 'setuptools', |
---|
| 29 | # -*- Extra requirements: -*- |
---|
| 30 | ], |
---|
| 31 | entry_points=""" |
---|
| 32 | # -*- Entry points: -*- |
---|
| 33 | """, |
---|
| 34 | ) |
---|
Note: See
TracBrowser for help on using the repository browser.