-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·22 lines (22 loc) · 859 Bytes
/
setup.py
File metadata and controls
executable file
·22 lines (22 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python2
from setuptools import setup, find_packages
setup(name='polyjit.buildbot',
version='0.1',
url='https://github.com/PolyJIT/buildbot',
packages=find_packages(),
install_requires=["buildbot>=0.9.7",
"buildbot-console-view",
"buildbot-waterfall-view",
"buildbot-www",
"treq"],
author="Andreas Simbuerger",
author_email="simbuerg@fim.uni-passau.de",
description="Buildbot drivers.",
license="MIT",
classifiers=[
'Development Status :: 4 - Beta', 'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2'
],
keywords="polyjit buildbot", )