-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
33 lines (30 loc) · 1.01 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
# -*- coding: utf-8 -*-
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from monocle import VERSION
install_requires = []
if sys.version_info < (2, 7):
install_requires.append('ordereddict')
setup(name="monocle",
version=VERSION,
description="An async programming framework with a blocking look-alike syntax",
author="Greg Hazel and Steven Hazel",
author_email="[email protected]",
maintainer="Steven Hazel",
maintainer_email="[email protected]",
url="http://github.com/saucelabs/monocle",
packages=['monocle',
'monocle.stack',
'monocle.stack.network',
'monocle.twisted_stack',
'monocle.twisted_stack.network',
'monocle.tornado_stack',
'monocle.tornado_stack.network',
'monocle.asyncore_stack',
'monocle.asyncore_stack.network'],
install_requires=install_requires,
license='MIT'
)