forked from redhat-qe-security/SCAutolib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (49 loc) · 1.47 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
from setuptools import setup, find_packages
from pathlib import Path
description = "Python library for automation tests of smart cards using "\
"virtualization."
here = Path(__file__).parent # return directory of current file
readme = Path(here, "README.md")
requirements = Path(here, "requirements.txt")
with requirements.open() as f:
reqs = f.readlines()
with readme.open() as f:
long_description = f.read()
graphical_reqs = [
'opencv-python',
'pandas',
'numpy',
'pytesseract',
'keyboard',
]
setup(
name="SCAutolib",
version="3.4.1",
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/redhat-qe-security/SCAutolib",
author="Pavel Yadlouski",
author_email="[email protected]",
classifiers=[
'Programming Language :: Python :: 3',
'Environment :: Console',
'Framework :: Pytest',
'Framework :: tox',
'Intended Audience :: Developers',
'Operating System :: Unix',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Testing :: Acceptance',
],
packages=find_packages(),
python_requires='>=3',
install_requires=reqs,
extras_require={
'graphical': graphical_reqs
},
include_package_data=True,
tests_require=["pytest", "pytest-env"],
entry_points={
"console_scripts": ["scauto=SCAutolib.cli_commands:cli"]
}
)