This repository was archived by the owner on Apr 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
59 lines (55 loc) · 1.7 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
47
48
49
50
51
52
53
54
55
56
57
58
59
"""Setup script for Rewind."""
from setuptools import setup
import sys
py_version = sys.version_info[:2]
if py_version <= (2, 6):
raise RuntimeError("Python <= 2.6 does not ship with argparse. "
"Therefore, rewind will not work with these.")
setup(
name='rewind',
version='0.3.1',
author='Jens Rantil',
author_email='jens.rantil@gmail.com',
license='GNU AGPL, version 3',
url='https://github.com/JensRantil/rewind',
packages=[
'rewind',
'rewind.server',
'rewind.server.test',
],
namespace_packages=["rewind"],
description='Rewind is a (CQRS) event store that talks ZeroMQ.',
long_description=open('DESCRIPTION.rst').read(),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: No Input/Output (Daemon)",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Software Development :: Object Brokering",
"Topic :: System :: Distributed Computing",
],
keywords="CQRS, event sourcing, ZeroMQ",
setup_requires=[
'nose>=1.0',
'coverage==3.5.1',
],
install_requires=[
"pyzmq==2.2.0.1",
],
tests_require=[
"mock==0.8",
"pep8==1.3.3",
"pep257==0.2.0",
],
test_suite="rewind.server.test",
entry_points={
'console_scripts': [
'rewind = rewind.server.main:main',
]
},
)