Skip to content

Commit

Permalink
Merge pull request #5 from dari0g/add-setup
Browse files Browse the repository at this point in the history
Adds setup.py for compatibility with older installation methods. Thanks @dari0g !
  • Loading branch information
bin3xish477 authored Aug 5, 2023
2 parents e95942b + 37030d0 commit 68f327a
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 68f327a

Please sign in to comment.