This repository was archived by the owner on Jan 24, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (49 loc) · 1.51 KB
/
setup.py
File metadata and controls
54 lines (49 loc) · 1.51 KB
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
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-client',
version='0.3.0',
author='Jens Rantil',
author_email='jens.rantil@gmail.com',
license='GNU AGPL, version 3',
url='https://github.com/JensRantil/rewind-client',
packages=[
'rewind',
'rewind.client',
'rewind.client.test',
],
namespace_packages=["rewind"],
description='Python client for Rewind event store.',
long_description=open('DESCRIPTION.rst').read(),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: No Input/Output (Daemon)",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
"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=[
"rewind==0.3.1",
"mock==0.8",
"pep8==1.3.3",
"pep257==0.2.0",
],
test_suite="rewind.client.test",
)