Last change
on this file since 17952 was
13673,
checked in by Henrik Bettermann, 9 years ago
|
Use content of README.rst for long_description.
|
-
Property svn:keywords set to
Id
|
File size:
1.0 KB
|
Rev | Line | |
---|
[5699] | 1 | from setuptools import setup, find_packages |
---|
| 2 | import os |
---|
| 3 | |
---|
| 4 | version = '1.0' |
---|
| 5 | |
---|
| 6 | setup(name='waeup.plonetheme', |
---|
| 7 | version=version, |
---|
| 8 | description="An installable theme for Plone 3", |
---|
[13673] | 9 | long_description=open("README.rst").read() + "\n" + |
---|
[5699] | 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='web zope plone theme', |
---|
| 18 | author='Henrik Bettermann', |
---|
| 19 | author_email='henrik@waeup.org', |
---|
| 20 | url='http://www.waeup.org', |
---|
| 21 | license='GPL', |
---|
| 22 | packages=find_packages(exclude=['ez_setup']), |
---|
| 23 | namespace_packages=['waeup'], |
---|
| 24 | include_package_data=True, |
---|
| 25 | zip_safe=False, |
---|
| 26 | install_requires=[ |
---|
| 27 | 'setuptools', |
---|
| 28 | # -*- Extra requirements: -*- |
---|
| 29 | ], |
---|
| 30 | entry_points=""" |
---|
| 31 | # -*- Entry points: -*- |
---|
| 32 | |
---|
| 33 | [z3c.autoinclude.plugin] |
---|
| 34 | target = plone |
---|
| 35 | """, |
---|
| 36 | ) |
---|
Note: See
TracBrowser for help on using the repository browser.