-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·49 lines (47 loc) · 1.31 KB
/
setup.py
File metadata and controls
executable file
·49 lines (47 loc) · 1.31 KB
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
41
42
43
44
45
46
47
48
49
import os
from glob import glob
from setuptools import setup, find_packages
path = os.path.join(os.path.dirname(__file__), 'houston/version.py')
with open(path, 'r') as f:
exec(f.read())
setup(
name='houston',
version=__version__,
description='TBA',
author='Chris Timperley, Jam M. Hernandez Q., Afsoon Afzal',
author_email='christimperley@gmail.com, jamarck96@gmail.com, afsoona@cs.cmu.edu',
url='https://github.com/squaresLab/Houston',
license='mit',
python_requires='>=3.5',
include_package_data=True,
install_requires = [
'flask',
'pytest',
'pexpect',
'geopy',
'bugzoo>=2.1.26',
'dronekit>=2.9.1',
'pymavlink>=2.3.4',
'attrs',
'ruamel.yaml>=0.15.86',
'sexpdata',
'numpy',
'z3-solver>=4.8.0.0.post1'
],
packages = [
'houston',
'houston.root_cause',
'houston.generator',
'houston.ardu',
'houston.ardu.copter',
'houston.ardu.rover'
],
package_dir = {
'houston': 'houston',
'houston.generator': 'houston/generator',
'houston.ardu': 'houston/ardu',
'houston.ardu.common': 'houston/ardu/common',
'houston.ardu.copter': 'houston/ardu/copter',
'houston.ardu.rover': 'houston/ardu/rover'
}
)