-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
43 lines (40 loc) · 1.17 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
32
33
34
35
36
37
38
39
40
41
42
43
import pathlib
from setuptools import setup
from scabi import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
# test dependencies
test_deps = [
'pytest',
'pytest-cov',
]
extras = {
'test': test_deps,
}
setup(
name="scabi",
version=__version__,
description="Implement vulnerabilities scanning on top of package management system like apt, pip, composer...",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/remiflavien1/scabi",
author="shadawck",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
'Topic :: Security',
],
packages=["scabi"],
install_requires=["requests", "mitrecve", "getdep", "docopt"],
tests_require=test_deps,
extras_require=extras,
keywords='security, dependencies, package management',
entry_points={
"console_scripts": [
"scabi=scabi.__main__:main",
]
},
)