-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (52 loc) · 1.56 KB
/
setup.py
File metadata and controls
56 lines (52 loc) · 1.56 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
# coding=utf-8
import re
import ast
from setuptools import setup, find_packages
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('inuyasha/__init__.py', 'rb') as f:
version = str(ast.literal_eval(_version_re.search(
f.read().decode('utf-8')).group(1)))
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='inuyasha',
version=version,
url='https://github.com/jaylu2018/miku/tree/main',
license='Apache License 2.0',
author='luyh',
author_email='2806767301@qq.com',
description='automation testing framework based on Pytest',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
package_data={
'inuyasha': ['/*.inuyasha'],
},
include_package_data=True,
zip_safe=False,
install_requires=[
'pytest~=7.2.1',
'playwright~=1.30.0',
'pytest-playwright~=0.3.0',
'requests~=2.28.2',
'pytest_cases~=3.6.13',
'loguru~=0.6.0',
'prettytable~=3.6.0',
],
classifiers=[
'Intended Audience :: Developers',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
entry_points={
'console_scripts': [
'inuyasha = inuyasha.cli:main',
]
},
extras_require={
},
)