-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
55 lines (50 loc) · 1.48 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
import os
from setuptools import setup, find_packages
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
version = '0.1.0'
setup(name='ubikdb',
version=version,
description="",
long_description=read('README.md'),
classifiers=[
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
keywords='',
author='Balazs Ree',
author_email='ree@greenfinity.hu',
url='https://github.com/reebalazs/ubikdb',
license='',
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
zip_safe=False,
extras_require=dict(
test=[
'nose',
'coverage',
'mock',
'sniffer',
#
# You should install a third-party library
# so sniffer does not eat CPU.
# Supported libraries are:
# 'pyinotify', # (Linux)
# 'pywin32', # (Windows)
# 'MacFSEvents', # (OSX)
#
]
),
install_requires=[
# XXX 0.3.6rc2 does not work, needs master from github repo
'gevent-socketio > 0.3.6rc2',
'gevent-websocket',
'ZODB3',
],
dependency_links=[
'http://github.com/abourget/gevent-socketio/tarball/master#egg=gevent-socketio-0.3.6rc3',
],
entry_points="""
""",
)