-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 1.04 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
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.read().splitlines()
with open('VERSION') as f:
version = f.read()
setup(
name='fafnir', # Replace with your project name
version=version,
author='syn-4ck',
author_email='[email protected]',
url='https://github.com/syn-4ck/fafnir',
description='Software supply chain security tool to automate appsec vulnerability detection',
long_description='Fafnir is an open-source tool that allows for the complete automation ' +
'of launching different security tools detecting vulnerabilities in the application''s, code',
license="MIT license",
packages=find_packages(exclude=["tests", ".github", ".github"]),
install_requires=requirements,
entry_points={
'console_scripts': [
'fafnir = src.main:main',
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache License 2.0",
"Operating System :: OS Independent",
]
)