summaryrefslogtreecommitdiff
path: root/setup.py
blob: a1cd26ee0e61594b85f74c39d987c7cf0542efca (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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',
    ],
    entry_points={
        'console_scripts': [
            'robots-client = robots.client:main',
        ]
    },
)