source: products/quintagroup.canonicalpath/trunk/setup.py @ 3146

Last change on this file since 3146 was 3145, checked in by vmaksymiv, 13 years ago

pep8 fixes

  • Property svn:eol-style set to native
File size: 1.2 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '0.7'
5
6tests_require = ['zope.testing']
7setup(name='quintagroup.canonicalpath',
8      version=version,
9      description="Brings canonical path calculation functionality",
10      long_description=open("README.txt").read() + "\n" +
11                       open(os.path.join("docs", "HISTORY.txt")).read(),
12      classifiers=[
13        "Programming Language :: Python",
14        "Topic :: Software Development :: Libraries :: Python Modules",
15        ],
16      keywords='canonical path plone quintagroup',
17      author='Quintagroup',
18      author_email='support@quintagroup.com',
19      url='http://svn.quintagroup.com/products/quintagroup.canonicalpath',
20      license='GPL',
21      packages=find_packages(exclude=['ez_setup']),
22      namespace_packages=['quintagroup'],
23      include_package_data=True,
24      zip_safe=False,
25      install_requires=[
26          'setuptools',
27      ],
28      tests_require=tests_require,
29      extras_require=dict(tests=tests_require),
30      test_suite='quintagroup.canonicalpath.tests.test_suite',
31      entry_points="""
32      # -*- Entry points: -*-
33      [z3c.autoinclude.plugin]
34      target = plone
35      """,
36      )
Note: See TracBrowser for help on using the repository browser.