-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
37 lines (33 loc) · 1.27 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
from setuptools import setup
import sys
requirements = []
# Enum34 fails in Python 3.5 (and not needed in 3.4), so skip it.
if sys.version_info < (3, 4):
requirements.append("enum34")
if sys.version_info < (3, 2):
requirements.append("backports.functools_lru_cache")
setup(
name='cvsslib',
version='0.5.5',
packages=['cvsslib', 'cvsslib.cvss2', 'cvsslib.cvss3', 'cvsslib.rvss', 'cvsslib.contrib'],
url='https://github.com/ctxis/cvsslib',
license='GPL',
author='Tom',
author_email='[email protected]',
description='CVSS 2/3 utilities',
long_description='A library for manipulating CVSS v2 and v3 vectors. Visit the github page '
'(https://github.com/ctxis/cvsslib) for examples and documentation.',
install_requires=requirements,
entry_points={
'console_scripts': ['cvss=cvsslib.command:main', 'rvss=cvsslib.command2:main'],
},
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'],
)