This repository was archived by the owner on Dec 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
60 lines (57 loc) · 1.66 KB
/
setup.py
File metadata and controls
60 lines (57 loc) · 1.66 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
from pathlib import Path
from setuptools import find_packages, setup
test_requires = [
'pytest',
'requests_mock'
]
setup(
name='ereuse-workbench',
version='12.1.1-beta',
url='https://github.com/ereuse/workbench',
license='Affero',
packages=find_packages(),
description='Hardware report of the computer including components,' +
' testing, benchmarking, erasing, and installing an OS.',
author='eReuse.org team',
author_email='x.bustamante@ereuse.org',
python_requires='>=3.5.3',
long_description=Path('README.rst').read_text(),
install_requires=[
'colorama',
'click >= 7.0',
'ereuse-utils[cli,getter,session,usb_flash_drive] >= 0.4.0b49',
'inflection',
'ntplib',
'python-dateutil',
'pySMART.smartx',
'requests',
'pint',
'numpy',
'tqdm == 4.32.2'
],
setup_requires=[
'pytest-runner'
],
extras_require={
'test': test_requires,
},
tests_require=test_requires,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Topic :: System :: Logging',
'Topic :: Utilities',
],
py_modules=['ereuse_workbench'],
entry_points={
'console_scripts': [
'erwb = ereuse_workbench.erwb:erwb',
],
},
)