source: products/quintagroup.transmogrify.simpleblog2quills/branches/without_image_move/setup.py @ 2284

Last change on this file since 2284 was 1305, checked in by chervol, 15 years ago

setup.py fixed

File size: 1.2 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '0.2.1'
5
6setup(name='quintagroup.transmogrifier.simpleblog2quills',
7      version=version,
8      description="Configuration of collective.transmogrifier pipeline for blog migration from SimpleBlog to QuillsEnabled",
9      long_description=open("README.txt").read() + "\n" +
10                       open(os.path.join("docs", "HISTORY.txt")).read(),
11      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
12      classifiers=[
13        "Programming Language :: Python",
14        "Topic :: Software Development :: Libraries :: Python Modules",
15        ],
16      keywords='',
17      author='Quintagroup',
18      author_email='info@quintagroup.com',
19      url='http://quintagroup.com',
20      license='GPL',
21      packages=find_packages(exclude=['ez_setup']),
22      namespace_packages=['quintagroup', 'quintagroup.transmogrifier'],
23      include_package_data=True,
24      zip_safe=False,
25      install_requires=[
26          'setuptools',
27          'quintagroup.transmogrifier',
28          #'Products.Quills'
29          # -*- Extra requirements: -*-
30      ],
31      entry_points="""
32      # -*- Entry points: -*-
33      """,
34      )
Note: See TracBrowser for help on using the repository browser.