root/3.2/collective.imstransport/trunk/setup.py

Revision 23, 1.0 KB (checked in by brent, 3 years ago)

Adding new code base for product.

Line 
1from setuptools import setup, find_packages
2
3version = '3.0'
4
5setup(name='collective.imstransport',
6      version=version,
7      description="IMS Content Packaging plugin for Plone.",
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 :: Libraries :: Python Modules",
17        ],
18      keywords='web zope plone theme',
19      author='Plone Collective',
20      author_email='product-developers@lists.plone.org',
21      url='http://svn.plone.org/svn/collective/',
22      license='GPL',
23      packages=find_packages(exclude=['ez_setup']),
24      namespace_packages=['collective'],
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 browser.