| 1 | # -*- coding: utf-8 -*- |
|---|
| 2 | # Copyright (c) 2008 'Tarek Ziadé' |
|---|
| 3 | |
|---|
| 4 | # This program is free software; you can redistribute it and/or modify |
|---|
| 5 | # it under the terms of the GNU General Public License as published by |
|---|
| 6 | # the Free Software Foundation; either version 2 of the License, or |
|---|
| 7 | # (at your option) any later version. |
|---|
| 8 | |
|---|
| 9 | # This program is distributed in the hope that it will be useful, |
|---|
| 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 12 | # GNU General Public License for more details. |
|---|
| 13 | |
|---|
| 14 | # You should have received a copy of the GNU General Public License |
|---|
| 15 | # along with this program; see the file COPYING. If not, write to the |
|---|
| 16 | # Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
|---|
| 17 | """ |
|---|
| 18 | This module contains the tool of logilab.installer |
|---|
| 19 | """ |
|---|
| 20 | import os |
|---|
| 21 | from setuptools import setup, find_packages |
|---|
| 22 | |
|---|
| 23 | version = '0.1.1' |
|---|
| 24 | |
|---|
| 25 | README = os.path.join(os.path.dirname(__file__), 'README.txt') |
|---|
| 26 | |
|---|
| 27 | long_description = open(README).read() + '\n\n' |
|---|
| 28 | |
|---|
| 29 | tests_require = [ |
|---|
| 30 | 'zope.testing', |
|---|
| 31 | ] |
|---|
| 32 | |
|---|
| 33 | setup(name='logilab.pylintinstaller', |
|---|
| 34 | version=version, |
|---|
| 35 | description="", |
|---|
| 36 | long_description=long_description, |
|---|
| 37 | # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers |
|---|
| 38 | classifiers=[ |
|---|
| 39 | "Programming Language :: Python", |
|---|
| 40 | "Topic :: Software Development :: Libraries :: Python Modules", |
|---|
| 41 | ], |
|---|
| 42 | keywords='', |
|---|
| 43 | author='Tarek Ziadé', |
|---|
| 44 | author_email='tarek@ziade.org', |
|---|
| 45 | url='', |
|---|
| 46 | license='GPL', |
|---|
| 47 | packages=find_packages(exclude=['ez_setup']), |
|---|
| 48 | namespace_packages=['logilab'], |
|---|
| 49 | include_package_data=True, |
|---|
| 50 | zip_safe=False, |
|---|
| 51 | # uncomment this to be able to run tests with setup.py |
|---|
| 52 | #test_suite = "logilab.installer.tests.test_installerdocs.test_suite", |
|---|
| 53 | tests_require=tests_require, |
|---|
| 54 | extras_require=dict(test=tests_require), |
|---|
| 55 | install_requires=[ |
|---|
| 56 | 'setuptools', |
|---|
| 57 | 'pylint==0.14', |
|---|
| 58 | # -*- Extra requirements: -*- |
|---|
| 59 | ], |
|---|
| 60 | entry_points=""" |
|---|
| 61 | # -*- Entry points: -*- |
|---|
| 62 | """, |
|---|
| 63 | ) |
|---|