-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
37 lines (33 loc) · 1.02 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
34
35
36
37
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
name = "awsenum"
setuptools.setup(
name=name,
version="0.0.1",
author="Eloy Perez Gonzalez",
author_email="zer1t0ps@protonmail.com",
description="Enumerate AWS permissions and resources",
url="https://github.com/zer1t0/awsenum",
project_urls={
"Repository": "https://github.com/zer1t0/awsenum"
},
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
],
entry_points={
"console_scripts": [
"awsenum = awsenum.main:main",
]
},
setup_requires=['pytest-runner'],
tests_require=['pytest'],
)