Chris Matthews | 4a71589 | 2015-10-08 21:52:50 +0000 | [diff] [blame] | 1 | import os |
| 2 | |
| 3 | from 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.) |
| 9 | os.chdir(os.path.dirname(os.path.abspath(__file__))) |
| 10 | |
| 11 | setup( |
| 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 Carruth | fdd1ff3 | 2019-01-19 12:31:25 +0000 | [diff] [blame] | 18 | license = 'Apache-2.0 with LLVM exception', |
Chris Matthews | 4a71589 | 2015-10-08 21:52:50 +0000 | [diff] [blame] | 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', |
Chandler Carruth | fdd1ff3 | 2019-01-19 12:31:25 +0000 | [diff] [blame] | 27 | 'License :: OSI Approved :: Apache-2.0 with LLVM exception', |
Chris Matthews | 4a71589 | 2015-10-08 21:52:50 +0000 | [diff] [blame] | 28 | '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 | ) |