summaryrefslogtreecommitdiff
path: root/real-setup.py
blob: c9f92b9e505ab3e880ff0e3f66aaf681f3cbc414 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from setuptools import find_packages, setup
from Cython.Build import cythonize

setup(
    name='robots',
    packages=find_packages(),
    ext_modules=cythonize('robots/*.pyx'),
    install_requires=[
        'flask',
        'blessings',
        'cython',
        'logbook',
        'zmq'
    ],
)