-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
40 lines (31 loc) · 827 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
35
36
37
38
39
40
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
test_deps = [
'nose',
'pyinotify',
'sniffer',
]
setup(
name = 'xremotebot',
version = '1.0',
packages = find_packages(),
install_requires = [
'tornado',
'sqlalchemy',
'pyserial',
'duinobot',
'markdown',
],
extras_require = {
'testing': test_deps, # for requirements-dev.txt
},
tests_require = test_deps,
test_suite = 'sniffer.main',
author = 'Fernando López',
author_email = '[email protected]',
description = 'Servidor para controlar robots educativos de forma remota',
license = 'MIT',
keywords = 'robots websockets education programming',
url = 'https://github.com/fernandolopez/xremotebot'
)