~ajung/+junk/z3c.pypimirror

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import setup, find_packages


CLASSIFIERS = [
    'Development Status :: 5 - Production/Stable',
    'Intended Audience :: Developers',
    'License :: OSI Approved :: Zope Public License',
    'Operating System :: OS Independent',
    'Programming Language :: Python',
]

desc = open('README.txt').read().strip()
changes = open('CHANGES.txt').read().strip()
long_description = desc + '\n\nChanges\n=======\n\n'  + changes

setup(
    name='z3c.pypimirror',
    version='0.2.10',
    author='Daniel Kraft, Andreas Jung et al.',
    author_email='dk@d9t.de',
    description='A module for building a complete or a partial PyPI mirror',
    long_description=long_description,
    maintainer='Andreas Jung',
    maintainer_email='lists@zopyx.com',
    classifiers=CLASSIFIERS,
    package_dir = {'': 'src'},
    namespace_packages=['z3c'] ,
    packages=find_packages('src'),
    include_package_data=True,
    package_data={
        '' : ['*.txt', '*.sample'],
    },
    zip_safe=False,
    install_requires = ['setuptools',
                        'zc.lockfile',
                        'BeautifulSoup'],
    extras_require = {
        'test': [ 'zc.buildout' ],
    },
    entry_points = dict(console_scripts=[
        'pypimirror = z3c.pypimirror.mirror:run',
        ])
    )