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

Last change on this file was 3590, checked in by vmaksymiv, 11 years ago

Updated classifiers

  • Property svn:eol-style set to native
File size: 1.7 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          "Development Status :: 5 - Production/Stable",
14          "Environment :: Web Environment",
15          "Framework :: Plone",
16          "Framework :: Plone :: 3.2",
17          "Framework :: Plone :: 3.3",
18          "Framework :: Plone :: 4.0",
19          "Framework :: Plone :: 4.1",
20          "Framework :: Plone :: 4.2",
21          "Framework :: Plone :: 4.3",
22          "Framework :: Zope2",
23          "Framework :: Zope3",
24          "License :: OSI Approved :: GNU General Public License (GPL)",
25          "Operating System :: OS Independent",
26          "Programming Language :: Python",
27          "Topic :: Software Development :: Libraries :: Python Modules",
28      ],
29      keywords='canonical path plone quintagroup',
30      author='Quintagroup',
31      author_email='support@quintagroup.com',
32      url='http://svn.quintagroup.com/products/quintagroup.canonicalpath',
33      license='GPL',
34      packages=find_packages(exclude=['ez_setup']),
35      namespace_packages=['quintagroup'],
36      include_package_data=True,
37      zip_safe=False,
38      install_requires=[
39          'setuptools',
40      ],
41      tests_require=tests_require,
42      extras_require=dict(tests=tests_require),
43      test_suite='quintagroup.canonicalpath.tests.test_suite',
44      entry_points="""
45      # -*- Entry points: -*-
46      [z3c.autoinclude.plugin]
47      target = plone
48      """,
49      )
Note: See TracBrowser for help on using the repository browser.