forked from ajinabraham/nodejsscan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 1018 Bytes
/
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
38
from setuptools import setup, find_packages
setup(
name="nodejsscan",
description='Static security code scanner (SAST) for Node.js applications',
version="3.4",
author="Ajin Abraham",
author_email="[email protected]",
license='GPL v3',
packages=find_packages(include=[
"core",
"core.*",
]),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3'
],
entry_points={
'console_scripts': [
"nodejsscan = core.cli:main",
]
},
# Include additional files into the package
include_package_data=True,
# Details
url="http://pypi.python.org/pypi/nodejsscan/",
long_description=open("README.md").read(),
# Dependent packages (distributions)
install_requires=[
"jsbeautifier==1.8.8",
"defusedxml==0.5.0",
],
)