blob: 07cf14d45b5700a8b91d816be5891f1b8446250f [file] [log] [blame]
Chris Matthews4a715892015-10-08 21:52:50 +00001import os
2
3from setuptools import setup, find_packages
4
5# setuptools expects to be invoked from within the directory of setup.py, but it
6# is nice to allow:
7# python path/to/setup.py install
8# to work (for scripts, etc.)
9os.chdir(os.path.dirname(os.path.abspath(__file__)))
10
11setup(
12 name = "llvmbisect",
13 version = "1.0",
14
15 author = "Daniel Dunbar and Chris Matthews",
16 author_email = "chris.matthews@apple.com",
17 url = 'http://lab.llvm.org',
18 license = 'BSD',
19
20 description = "Compiler bisection service.",
21 keywords = 'testing compiler performance development llvm',
22
23 classifiers=[
24 'Development Status :: 4 - Beta',
25 'Environment :: Console',
26 'Intended Audience :: Developers',
27 ('License :: OSI Approved :: '
28 'University of Illinois/NCSA Open Source License'),
29 'Natural Language :: English',
30 'Operating System :: OS Independent',
31 'Progamming Language :: Python',
32 'Topic :: Software Development :: Quality Assurance',
33 'Topic :: Software Development :: Testing',
34 ],
35
36 packages = find_packages(),
37
38 scripts = ['bin/llvmlab'],
39
40 install_requires=['requests'],
41)