-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
35 lines (27 loc) · 891 Bytes
/
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
#!/usr/bin/env python
# encoding: utf-8
# $Source$#
from sys import version
import os
from setuptools import setup
__version__ = 1.0
if version > '2.4' and version < '3.0':
requires=['numpy', 'ujson','pyinotify','tftpy','networkx','zmq','pika','pystun','netaddr','pyftpdlib']
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='pumpkin',
version=__version__,
description='Distributed data processing and transformation network framework. ',
long_description="""
""",
author='Reggie Cushing',
author_email='[email protected]',
maintainer='DReggie Cushing',
maintainer_email='[email protected]',
url='https://github.com/recap/pumpkin',
download_url='https://github.com/recap/pumpkin',
package_dir={'pumpkin':'pumpkin'},
packages=['pumpkin'],
install_requires=requires
)