| 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 | version = '4.2.0' |
|---|
| 9 | |
|---|
| 10 | setup(name='quintagroup.seoptimizer', |
|---|
| 11 | version=version, |
|---|
| 12 | description="Quintagroup Search Engine Optimization Tool", |
|---|
| 13 | long_description=open("README.txt").read() + "\n" + |
|---|
| 14 | open(os.path.join("docs", "INSTALL.txt")).read() + "\n" + |
|---|
| 15 | open(os.path.join("docs", "HISTORY.txt")).read(), |
|---|
| 16 | |
|---|
| 17 | # Get more strings from |
|---|
| 18 | # 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, ' |
|---|
| 28 | 'Vitaliy Podoba, Volodymyr Cherepanyak, Taras Melnychuk, ' |
|---|
| 29 | 'Vitaliy Stepanov, Andriy Mylenkyy', |
|---|
| 30 | author_email='support@quintagroup.com', |
|---|
| 31 | url='http://quintagroup.com/services/' |
|---|
| 32 | 'plone-development/products/qSEOptimizer/', |
|---|
| 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 | 'plone.browserlayer', |
|---|
| 41 | 'quintagroup.canonicalpath>=0.6', |
|---|
| 42 | 'collective.monkeypatcher', |
|---|
| 43 | #'Plone >= 4.0a', |
|---|
| 44 | # -*- Extra requirements: -*- |
|---|
| 45 | ], |
|---|
| 46 | entry_points=""" |
|---|
| 47 | # -*- Entry points: -*- |
|---|
| 48 | [z3c.autoinclude.plugin] |
|---|
| 49 | target = plone |
|---|
| 50 | """, |
|---|
| 51 | ) |
|---|