Last change
on this file since 10222 was
10084,
checked in by Henrik Bettermann, 12 years ago
|
Fill trunk.
|
-
Property svn:keywords set to
Id
|
File size:
1.2 KB
|
Line | |
---|
1 | from setuptools import setup, find_packages |
---|
2 | import os |
---|
3 | |
---|
4 | version = '0.1' |
---|
5 | |
---|
6 | setup(name='waeup.plonetheme.ngren3', |
---|
7 | version=version, |
---|
8 | description="WAeUP Bootstrap Plone Theme for NgREN", |
---|
9 | long_description=open("README.rst").read() + "\n" + |
---|
10 | open(os.path.join("docs", "HISTORY.txt")).read(), |
---|
11 | # Get more strings from |
---|
12 | # http://pypi.python.org/pypi?%3Aaction=list_classifiers |
---|
13 | classifiers=[ |
---|
14 | "Framework :: Plone", |
---|
15 | "Programming Language :: Python", |
---|
16 | ], |
---|
17 | keywords='plone theme twitterbootstrap', |
---|
18 | author='Henrik Bettermann', |
---|
19 | author_email='henrik@waeup.org', |
---|
20 | url='https://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 | 'z3c.jbot', |
---|
29 | 'plone.browserlayer', |
---|
30 | 'plone.app.jquery >1.7,<1.8', |
---|
31 | 'collective.js.bootstrap', |
---|
32 | # -*- Extra requirements: -*- |
---|
33 | ], |
---|
34 | entry_points=""" |
---|
35 | # -*- Entry points: -*- |
---|
36 | |
---|
37 | [z3c.autoinclude.plugin] |
---|
38 | target = plone |
---|
39 | """ |
---|
40 | ) |
---|
Note: See
TracBrowser for help on using the repository browser.