Skip to content

Commit

Permalink
Updating setup.py install requires
Browse files Browse the repository at this point in the history
  • Loading branch information
MSAdministrator committed Mar 25, 2022
1 parent ea4023e commit 235e011
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,23 @@ def get_version(rel_path: str) -> str:
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
project_urls=PROJECT_URLS,
install_requires=parse_requirements('./requirements.txt'),
install_requires=[
'requests>=2.20.0; python_version >= "3.6"',
'charset_normalizer~=2.0.0; python_version >= "3"',
'chardet>=3.0.2,<5; python_version < "3"',
'idna>=2.5,<3; python_version < "3"',
'idna>=2.5,<4; python_version >= "3"',
'urllib3>=1.21.1,<1.27',
'certifi>=2017.4.17',
'windows-curses>=2.2.0,<3.0.0; platform_system=="Windows" and python_version >= "3.6"',
'attrs>=21.3.0; python_version >= "3.6"',
'pyyaml>=6.0; python_version >= "3.6"',
'fire>=0.4.0; python_version >= "3.6"',
'pypsrp>=0.5.0; python_version >= "3.6"',
'paramiko>=2.7.2; python_version >= "3.6"',
'pick>=1.2.0; python_version >= "3.6"'
],
#install_requires=parse_requirements('./requirements.txt'),
keywords=['atomic-red-team', 'att&ck', 'test', 'mitre', 'executor'],
url='https://github.com/swimlane/atomic-operator',
author='MSAdministrator',
Expand Down

0 comments on commit 235e011

Please sign in to comment.