source: products/quintagroup.mailer/branches/devel/setup.py @ 3523

Last change on this file since 3523 was 3522, checked in by vmaksymiv, 12 years ago

initial import

File size: 934 bytes
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '1.0'
5
6setup(name='quintagroup.mailer',
7      version=version,
8      description="",
9      long_description=open("README.txt").read() + "\n" + open(
10          os.path.join("docs", "HISTORY.txt")).read(),
11      # Get more strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
12      classifiers=["Programming Language :: Python", ],
13      keywords='',
14      author='Quintagroup',
15      author_email='support@quintagroup.com',
16      url='http://svn.quintagroup.com/products/quintagroup.mailer/',
17      license='GPL',
18      packages=find_packages(exclude=['ez_setup']),
19      namespace_packages=['quintagroup'],
20      include_package_data=True,
21      zip_safe=False,
22      install_requires=[
23          'setuptools',
24          # -*- Extra requirements: -*-
25      ],
26      entry_points="""
27      [z3c.autoinclude.plugin]
28      target = plone
29      """,
30      )
Note: See TracBrowser for help on using the repository browser.