-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
56 lines (53 loc) · 1.84 KB
/
setup.py
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
# This is the name of your project. The first time you publish this
# package, this name will be registered for you. It will determine how
# users can install this project, e.g.:
#
# $ pip install tplib
#
# And where it will live on PyPI: https://pypi.org/project/tplib/
#
name="tplib",
version="1.0.0",
description="A python library for managing test cases, test plans",
long_description=long_description,
long_description_content_type="text/plain",
url="https://github.com/rhinstaller/tplib",
author="Pavel Holica",
author_email="pholica@redhat.com",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
keywords="testcases, testplans, yaml",
package_dir={"": "."},
packages=find_packages(where="."),
python_requires=">=3, <4",
install_requires=[
'jinja2',
'pyyaml'
],
package_data={
"": ["doc/*", "examples/*"],
},
entry_points={
"console_scripts": [
"tcdiff=tplib.diff_main:main",
"tc_generate_documents=tplib.generate_documents_main:main",
"tcquery=tplib.query_main:main",
"tcvalidate=tplib.validate_main:main",
],
},
)