Last change
on this file was
344,
checked in by chervol, 18 years ago
|
tag 0.8
|
-
Property svn:eol-style set to
native
|
File size:
1.1 KB
|
Line | |
---|
1 | from setuptools import setup, find_packages |
---|
2 | |
---|
3 | version = '0.1.0' |
---|
4 | |
---|
5 | setup(name='quintagroup.portletmanager', |
---|
6 | version=version, |
---|
7 | description="Quintagroup portlet manager", |
---|
8 | long_description="""Quintagroup portlet manager""", |
---|
9 | # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers |
---|
10 | classifiers=[ |
---|
11 | "Framework :: Plone", |
---|
12 | "Framework :: Zope2", |
---|
13 | "Framework :: Zope3", |
---|
14 | "Programming Language :: Python", |
---|
15 | "Topic :: Software Development :: Libraries :: Python Modules", |
---|
16 | ], |
---|
17 | keywords='quintagroup portlet manager', |
---|
18 | author='Taras Melnychuk', |
---|
19 | author_email='fenix@quintagroup.com', |
---|
20 | url='http://svn.quintagroup.com/products/quintagroup.portletmanager/trunk/', |
---|
21 | license='GPL', |
---|
22 | packages=find_packages(exclude=['ez_setup']), |
---|
23 | namespace_packages=['quintagroup'], |
---|
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 | ) |
---|
Note: See
TracBrowser
for help on using the repository browser.