Skip to content

Commit

Permalink
Create setup.py (initstring#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesConlan96 authored Jul 31, 2023
1 parent bf2dd25 commit 349269a
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
from setuptools import setup

setup(
name='cloud_enum',
description='Multi-cloud OSINT tool. Enumerate public resources in AWS, Azure, and Google Cloud.',
author='initstring',
url='https://github.com/initstring/cloud_enum',
license='MIT',
packages=[
'enum_tools'
],
py_modules=[
'cloud_enum'
],
install_requires=[
'dnspython',
'requests',
'requests_futures'
],
python_requires='>=3.0.0',
entry_points={
'console_scripts': [
'cloud_enum = cloud_enum:main'
]
}
)

0 comments on commit 349269a

Please sign in to comment.