-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 1.05 KB
/
setup.py
File metadata and controls
34 lines (31 loc) · 1.05 KB
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
REQUIREMENTS = ['argparse', 'packaging', 'requests']
setup(
name="pychk",
version="1.0.1",
description="A command line tool for developers to check if their project dependencies have known vulnerabilities.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ayushpriya10/pychk",
author="Ayush Priya",
author_email="ayushpriya10@gmail.com",
packages=find_packages(include=[
"pychk"
]),
include_package_data=True,
entry_points={
"console_scripts": [
'pychk = pychk.main:run_app'
]
},
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License ",
"Programming Language :: Python :: 3.6",
],
python_requires='>=3.6',
install_requires=REQUIREMENTS,
keywords='pip requirements security SAST sast vulnerability dependencies dependency vulnerable'
)