-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 734 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 734 Bytes
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
from setuptools import setup
setup(
name = 'flowz',
version = '1.1.0',
description = 'Async I/O - oriented dependency programming framework',
url = 'https://github.com/ethanrowe/flowz',
author = 'Ethan Rowe',
author_email = 'ethan@the-rowes.com',
license = 'MIT',
test_suite = 'nose.collector',
packages = [
'flowz',
'flowz.channels',
'flowz.examples',
'flowz.test',
'flowz.test.artifacts',
'flowz.test.channels',
'flowz.test.util',
],
tests_require = [
'mock',
'nose',
],
install_requires = [
'six >= 1.9.0',
'tornado >= 4.2',
'futures >= 3.0.5;python_version<"3"'
])