-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
97 lines (95 loc) · 3.79 KB
/
setup.py
File metadata and controls
97 lines (95 loc) · 3.79 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# Copyright 2019 Katteli Inc.
# TestFlows.com Open-Source Software Testing Framework (http://testflows.com)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fd:
long_description = fd.read()
setup(
name="testflows.core",
version="__VERSION__",
description="TestFlows - Core",
author="Vitaliy Zakaznikov",
author_email="vzakaznikov@testflows.com",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/testflows/testflows-core",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
],
python_requires=">=3.8",
license="Apache-2.0",
packages=[
"testflows.core",
"testflows.exceptions",
"testflows.settings",
"testflows.combinatorics",
"testflows._core",
"testflows._core.contrib",
"testflows._core.contrib.lzma",
"testflows._core.contrib.arpeggio",
"testflows._core.contrib.markdown2",
"testflows._core.contrib.pygments",
"testflows._core.contrib.pygments.filters",
"testflows._core.contrib.pygments.formatters",
"testflows._core.contrib.pygments.lexers",
"testflows._core.contrib.pygments.styles",
"testflows._core.contrib.rsa",
"testflows._core.contrib.pyasn1",
"testflows._core.contrib.pyasn1.type",
"testflows._core.contrib.pyasn1.compat",
"testflows._core.contrib.pyasn1.codec",
"testflows._core.contrib.pyasn1.codec.ber",
"testflows._core.contrib.pyasn1.codec.cer",
"testflows._core.contrib.pyasn1.codec.der",
"testflows._core.contrib.pyasn1.codec.native",
"testflows._core.contrib.yaml",
"testflows._core.contrib.schema",
"testflows._core.contrib.x256",
"testflows._core.contrib.aiomsg",
"testflows._core.contrib.cloudpickle",
"testflows._core.contrib.snowflake",
"testflows._core.parallel",
"testflows._core.parallel.executor",
"testflows._core.utils",
"testflows._core.transform",
"testflows._core.transform.log",
"testflows._core.transform.log.report",
"testflows._core.document",
"testflows._core.document.new",
"testflows._core.cli",
"testflows._core.cli.arg",
"testflows._core.cli.arg.handlers",
"testflows._core.cli.arg.handlers.report",
"testflows._core.cli.arg.handlers.report.compare",
"testflows._core.cli.arg.handlers.transform",
"testflows._core.cli.arg.handlers.document",
"testflows._core.cli.arg.handlers.document.new",
"testflows._core.cli.arg.handlers.requirement",
"testflows._core.cli.arg.handlers.snapshot",
"testflows._core.cli.arg.handlers.show",
"testflows._core.cli.arg.handlers.ssl",
"testflows._core.combinatorics",
],
package_data={
"testflows._core.document": ["*.css"],
"testflows._core.document.new": ["*.md"],
},
scripts=["testflows/_core/bin/tfs", "testflows/_core/bin/tfs-worker"],
zip_safe=False,
install_requires=[],
extras_require={"dev": []},
)