blob: 5595dd466fed5664eef4f9eb33319ff30c58f081 [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',
Chandler Carruthfdd1ff32019-01-19 12:31:25 +000018 license = 'Apache-2.0 with LLVM exception',
Chris Matthews4a715892015-10-08 21:52:50 +000019
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',
Chandler Carruthfdd1ff32019-01-19 12:31:25 +000027 'License :: OSI Approved :: Apache-2.0 with LLVM exception',
Chris Matthews4a715892015-10-08 21:52:50 +000028 'Natural Language :: English',
29 'Operating System :: OS Independent',
30 'Progamming Language :: Python',
31 'Topic :: Software Development :: Quality Assurance',
32 'Topic :: Software Development :: Testing',
33 ],
34
35 packages = find_packages(),
36
37 scripts = ['bin/llvmlab'],
38
39 install_requires=['requests'],
40)