-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 752 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 752 Bytes
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
from setuptools import setup, find_packages
setup(
name='rootshell_platform_api',
version='0.2.0',
description='A Package to interact with Rootshells Public API',
long_description=open('README_PI.md').read(),
long_description_content_type='text/markdown',
author='Chris',
author_email='chris.mills@rootshellsecurity.net',
packages=find_packages(),
install_requires=[
'requests>=2.32.3',
'python-dotenv>=1.0.1',
'click>=8.1.7',
],
extras_require={
'dev': [
'requests-mock>=1.12.1',
],
},
entry_points={
'console_scripts': [
'rootshell_platform = rootshell_platform_api.cli:cli',
],
},
python_requires='>=3.7',
)