Skip to content

Commit

Permalink
add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dariothebarber committed Aug 5, 2023
1 parent e95942b commit 37030d0
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
from setuptools import setup, find_packages

setup(
name='ghast-scanner',
version='1.5.7',
packages=find_packages(),
install_requires=[
'iniconfig==2.0.0',
'packaging==23.1',
'pluggy==1.2.0',
'pytest==7.4.0',
'PyYAML==6.0',
],
author='Alex Rodriguez',
author_email='[email protected]',
description='Analyze the security posture of your GitHub Action',
url='https://github.com/bin3xish477/ghast',
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
)

0 comments on commit 37030d0

Please sign in to comment.