from setuptools import setup, find_packages import os version = '0.1' setup(name='qg.canonicalurl', version=version, description="Calculate URL with Canonical URL property", long_description=open("README.txt").read() + "\n" + open(os.path.join("docs", "HISTORY.txt")).read(), # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers classifiers=[ "Programming Language :: Python", "Topic :: Software Development :: Libraries :: Python Modules", ], keywords='', author='quintagroup', author_email='support@quintagroup.com', url='', license='GPL', packages=find_packages(exclude=['ez_setup']), namespace_packages=['qg'], include_package_data=True, zip_safe=False, install_requires=[ 'setuptools', # -*- Extra requirements: -*- ], entry_points=""" # -*- Entry points: -*- """, )