| 1 | # -*- coding: utf-8 -*- |
|---|
| 2 | """ |
|---|
| 3 | This module contains the tool of quintagroup.seoptimizer |
|---|
| 4 | """ |
|---|
| 5 | import os |
|---|
| 6 | from setuptools import setup, find_packages |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | version = '2.3.3' |
|---|
| 10 | |
|---|
| 11 | setup(name='quintagroup.seoptimizer', |
|---|
| 12 | version=version, |
|---|
| 13 | description="Quintagroup Search Engine Optimization Tool", |
|---|
| 14 | long_description=open("README.txt").read() + "\n" + |
|---|
| 15 | open(os.path.join("docs", "INSTALL.txt")).read() + "\n" + |
|---|
| 16 | open(os.path.join("docs", "HISTORY.txt")).read(), |
|---|
| 17 | |
|---|
| 18 | # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers |
|---|
| 19 | classifiers=[ |
|---|
| 20 | "Framework :: Plone", |
|---|
| 21 | "Framework :: Zope2", |
|---|
| 22 | "Framework :: Zope3", |
|---|
| 23 | "Programming Language :: Python", |
|---|
| 24 | "Topic :: Software Development :: Libraries :: Python Modules", |
|---|
| 25 | ], |
|---|
| 26 | keywords='', |
|---|
| 27 | author='Myroslav Opyr, Volodymyr Romaniuk, Mykola Kharechko, Vitaliy Podoba, Volodymyr Cherepanyak, Taras Melnychuk, Vitaliy Stepanov, Andriy Mylenkyy', |
|---|
| 28 | author_email='support@quintagroup.com', |
|---|
| 29 | url='http://quintagroup.com/services/plone-development/products/qSEOptimizer/', |
|---|
| 30 | license='GPL', |
|---|
| 31 | packages=find_packages(exclude=['ez_setup']), |
|---|
| 32 | namespace_packages=['quintagroup'], |
|---|
| 33 | include_package_data=True, |
|---|
| 34 | zip_safe=False, |
|---|
| 35 | install_requires=[ |
|---|
| 36 | 'setuptools', |
|---|
| 37 | 'quintagroup.canonicalpath>=0.4', |
|---|
| 38 | # -*- Extra requirements: -*- |
|---|
| 39 | ], |
|---|
| 40 | entry_points=""" |
|---|
| 41 | # -*- Entry points: -*- |
|---|
| 42 | [z3c.autoinclude.plugin] |
|---|
| 43 | target = plone |
|---|
| 44 | """, |
|---|
| 45 | ) |
|---|