root / amina.quality / setup.py

Revision 197:7604e76876f5, 2.0 kB (checked in by tziade@…, 14 months ago)

preventing launch for dotted folders

Line 
1# -*- coding: utf-8 -*-
2# Copyright (C)2007 'Tarek Ziade'
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"""
18This module contains the tool of amina.quality
19"""
20import os
21from setuptools import setup, find_packages
22
23version = '0.1'
24
25README = os.path.join(os.path.dirname(__file__),
26          'amina',
27          'quality', 'docs', 'README.txt')
28
29long_description = open(README).read() + '\n\n'
30
31setup(name='amina.quality',
32      version=version,
33      description="Contains QA utilities",
34      long_description=long_description,
35      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
36      classifiers=[
37        "Programming Language :: Python",
38        "Topic :: Software Development :: Libraries :: Python Modules",
39        ],
40      keywords='qa levenshtein',
41      author='Tarek Ziade',
42      author_email='tarek@ziade.org',
43      url='http://hg.programmation-python.org',
44      license='GPL',
45      packages=find_packages(exclude=['ez_setup']),
46      namespace_packages=['amina'],
47      include_package_data=True,
48      zip_safe=False,
49      # uncomment this to be able to run tests with setup.py
50      #test_suite = "amina.quality.tests.test_qualitydocs.test_suite",
51      install_requires=[
52          'setuptools',
53          'zope.testing',
54          # -*- Extra requirements: -*-
55          'python-Levenshtein'
56      ],
57      entry_points="""
58      # -*- Entry points: -*-
59      """,
60      )
Note: See TracBrowser for help on using the browser.