forked from aboutcode-org/vulnerablecode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (36 loc) · 1.09 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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
requirements = [
r.strip()
for r in open('requirements.txt')
if r.strip() and not r.strip().startswith('#')
]
desc = 'Software package vulnerabilities database.'
setup(
name='vulnerablecode',
version='20.10',
license='Apache-2.0',
description=desc,
long_description=desc,
author='nexB Inc. and others',
author_email='[email protected]',
url='https://github.com/nexB/vulnerablecode',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
],
keywords=[
'open source', 'vulnerability', 'package',
],
install_requires=requirements,
)