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

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

pep8 fixes

  • Property svn:eol-style set to native
File size: 1.2 KB
RevLine 
[782]1from setuptools import setup, find_packages
2import os
3
[2373]4version = '0.7'
[782]5
[3145]6tests_require = ['zope.testing']
[782]7setup(name='quintagroup.canonicalpath',
8      version=version,
[2154]9      description="Brings canonical path calculation functionality",
[782]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      ],
[1699]28      tests_require=tests_require,
29      extras_require=dict(tests=tests_require),
[3145]30      test_suite='quintagroup.canonicalpath.tests.test_suite',
[782]31      entry_points="""
32      # -*- Entry points: -*-
[2102]33      [z3c.autoinclude.plugin]
34      target = plone
[782]35      """,
36      )
Note: See TracBrowser for help on using the repository browser.