forked from mozilla/build-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·43 lines (34 loc) · 991 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
41
42
43
#! /usr/bin/env python
from setuptools import setup, find_packages
setup(
name="buildtools",
version="1.0.6",
description="Mozilla RelEng Toolkit",
author="Release Engineers",
author_email="[email protected]",
# python packages are under lib/python. Note that there are several
# top-level packages here -- not just a buildtools package
packages=find_packages("lib/python"),
package_dir={'': "lib/python"},
test_suite='mozilla_buildtools.test',
install_requires=[
'sqlalchemy',
'argparse',
'Twisted==10.1.0',
'simplejson',
'furl',
'requests',
'docopt',
'python-dateutil',
'jinja2',
'redo',
],
entry_points={
'console_scripts': [
'slavealloc = slavealloc.scripts.main:main'
],
},
scripts=["buildfarm/maintenance/reboot-idle-slaves.py"],
# include files listed in MANIFEST.in
include_package_data=True,
)