-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (42 loc) · 1.38 KB
/
setup.py
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
44
45
46
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 = '1.0.15.1',
author='Daniel Kraft, Andreas Jung et al.',
author_email='[email protected]',
description='A module for building a complete or a partial PyPI mirror',
long_description=long_description,
maintainer='Seppo Yli-Olli',
maintainer_email='[email protected]',
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',
'eventlet'],
extras_require = {
'test': [ 'zc.buildout',
'zope.testing',
'interlude' ],
},
entry_points = dict(console_scripts=[
'pypimirror = z3c.pypimirror.mirror:run',
])
)