forked from TranslatorSRI/TestHarness
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 715 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
"""Setup file for SRI Test Harness package."""
from setuptools import setup
with open("README.md", encoding="utf-8") as readme_file:
readme = readme_file.read()
setup(
name="sri-test-harness",
version="0.1.2",
author="Max Wang",
author_email="max@covar.com",
url="https://github.com/TranslatorSRI/TestHarness",
description="Translator SRI Test Harness",
long_description_content_type="text/markdown",
long_description=readme,
packages=["test_harness"],
include_package_data=True,
zip_safe=False,
license="MIT",
python_requires=">=3.9",
entry_points={
"console_scripts": [
"test-harness = test_harness.main:cli",
],
},
)