Last change
on this file was
2638,
checked in by chervol, 14 years ago
|
Updated required packages
|
-
Property svn:eol-style set to
native
|
File size:
1.1 KB
|
Line | |
---|
1 | from setuptools import setup, find_packages |
---|
2 | import os |
---|
3 | |
---|
4 | version = '0.1' |
---|
5 | |
---|
6 | setup(name='quintagroup.blog.star', |
---|
7 | version=version, |
---|
8 | description="Quintagroup customization of collective.blog.star package", |
---|
9 | long_description=open("README.txt").read() + "\n" + |
---|
10 | open(os.path.join("docs", "HISTORY.txt")).read(), |
---|
11 | # Get more strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers |
---|
12 | classifiers=[ |
---|
13 | "Framework :: Plone", |
---|
14 | "Programming Language :: Python", |
---|
15 | ], |
---|
16 | keywords='', |
---|
17 | author='Quintagroup', |
---|
18 | author_email='', |
---|
19 | url='http://svn.quintagroup.com/products/quintagroup.blog.star', |
---|
20 | license='GPL', |
---|
21 | packages=find_packages(exclude=['ez_setup']), |
---|
22 | namespace_packages=['quintagroup', 'quintagroup.blog'], |
---|
23 | include_package_data=True, |
---|
24 | zip_safe=False, |
---|
25 | install_requires=[ |
---|
26 | 'setuptools', |
---|
27 | 'collective.blog.star', |
---|
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.