-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (30 loc) · 1.28 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup_info = dict(name='idrac_ctl',
version='1.0.14',
author='Mustafa Bayramov',
author_email="[email protected]",
url="https://github.com/spyroot/idrac_ctl",
description='Standalone command line tool to '
'interact with Dell iDRAC via Redfish REST API.',
long_description=long_description,
long_description_content_type='text/markdown',
packages=['idrac_ctl'] + ['idrac_ctl.' + pkg for pkg in find_packages('idrac_ctl')],
license="MIT",
python_requires='>=3.10',
install_requires=requirements,
entry_points={
'console_scripts': [
'idrac_ctl = idrac_ctl.idrac_main:idrac_main_ctl',
]
},
extras_require={
"dev": [
"pytest >= 3.7"
]
},
)
setup(**setup_info)