-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
41 lines (39 loc) · 1.27 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
import setuptools
import os
import os_tests
setuptools.setup(
name="os-tests",
version=os_tests.__version__,
author="Xiao Liang",
author_email="[email protected]",
description="Lightweight, portable and customer centric tests collection for Linux OS",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/virt-s1/os-tests",
#packages=setuptools.find_packages(),
packages=[ 'os_tests', 'os_tests.tests', 'os_tests.libs'],
package_data={
'os_tests': [
'cfg/*',
'docs/*',
'data/*',
'templates/*',
'utils/*'
]
},
include_package_data=True,
#data_files=[('/'+os.path.expanduser("~"), ['cfg/os-tests.yaml']),],
install_requires=['PyYAML', 'Jinja2<=2.11.3', 'tipset>=0.2.4', 'markupsafe<=1.1.1', 'packaging<=21.3'],
license="GPLv3+",
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
"Programming Language :: Python :: 3",
'Operating System :: POSIX',
],
python_requires='>=3.6',
entry_points = {
'console_scripts': [
'os-tests = os_tests.os_tests_run:main',
],
},
)