2013-08-13 19:08:48 +00:00
|
|
|
import os
|
2022-10-28 22:13:35 +02:00
|
|
|
import sys
|
2009-12-26 22:58:39 +00:00
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
2013-08-13 19:08:48 +00:00
|
|
|
|
|
|
|
# setuptools expects to be invoked from within the directory of setup.py, but it
|
|
|
|
# is nice to allow:
|
|
|
|
# python path/to/setup.py install
|
|
|
|
# to work (for scripts, etc.)
|
|
|
|
os.chdir(os.path.dirname(os.path.abspath(__file__)))
|
2022-10-28 22:13:35 +02:00
|
|
|
sys.path.insert(0, ".")
|
|
|
|
|
|
|
|
import lit
|
2013-08-13 19:08:48 +00:00
|
|
|
|
2022-10-29 06:44:11 +02:00
|
|
|
with open("README.rst", "r", encoding="utf-8") as f:
|
|
|
|
long_description = f.read()
|
|
|
|
|
2009-12-26 22:58:39 +00:00
|
|
|
setup(
|
2010-09-18 02:28:12 +00:00
|
|
|
name="lit",
|
2009-12-26 22:58:39 +00:00
|
|
|
version=lit.__version__,
|
|
|
|
author=lit.__author__,
|
|
|
|
author_email=lit.__email__,
|
|
|
|
url="http://llvm.org",
|
2019-01-19 11:30:51 +00:00
|
|
|
license="Apache-2.0 with LLVM exception",
|
2020-10-26 09:09:25 +01:00
|
|
|
license_files=["LICENSE.TXT"],
|
2009-12-26 22:58:39 +00:00
|
|
|
description="A Software Testing Tool",
|
|
|
|
keywords="test C++ automatic discovery",
|
2022-10-29 06:44:11 +02:00
|
|
|
long_description=long_description,
|
2009-12-26 22:58:39 +00:00
|
|
|
classifiers=[
|
|
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
"Environment :: Console",
|
|
|
|
"Intended Audience :: Developers",
|
2019-08-08 17:23:33 +00:00
|
|
|
"License :: OSI Approved :: Apache Software License",
|
2009-12-26 22:58:39 +00:00
|
|
|
"Natural Language :: English",
|
|
|
|
"Operating System :: OS Independent",
|
2010-09-18 02:28:12 +00:00
|
|
|
"Programming Language :: Python",
|
2009-12-26 22:58:39 +00:00
|
|
|
"Topic :: Software Development :: Testing",
|
2023-05-15 11:02:42 +02:00
|
|
|
],
|
2009-12-26 22:58:39 +00:00
|
|
|
zip_safe=False,
|
|
|
|
packages=find_packages(),
|
|
|
|
entry_points={
|
|
|
|
"console_scripts": [
|
2020-03-27 10:46:32 -07:00
|
|
|
"lit = lit.main:main",
|
2009-12-26 22:58:39 +00:00
|
|
|
],
|
2020-03-27 10:46:32 -07:00
|
|
|
},
|
2009-12-26 22:58:39 +00:00
|
|
|
)
|