-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (30 loc) · 1.09 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
from setuptools import setup, find_packages
def read(relative):
contents = open(relative, 'r').read()
return [l for l in contents.split('\n') if l != '']
setup(
name='pyzmqache',
version=read('VERSION')[0],
description='Embeddable cache for Python using ZeroMQ transports .',
author='John Hopper',
author_email='[email protected]',
url='https://github.com/zinic/pyzmqache',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Natural Language :: English',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Topic :: Internet',
'Topic :: Utilities'
],
tests_require=read('./tools/tests-require'),
install_requires=read('./tools/install-requires'),
test_suite='nose.collector',
zip_safe=False,
include_package_data=True,
packages=find_packages(exclude=['*.tests']))