forked from CycloneDX/cyclonedx-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (43 loc) · 1.44 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
44
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='cyclonedx-bom',
version='0.3.1',
description='CycloneDX software bill-of-material (SBoM) generation utility',
long_description=open("README.rst").read(),
packages=find_packages(),
package_data={'cyclonedx.schema': ['bom-1.0.xsd', 'spdx.xsd']},
include_package_data=True,
zip_safe=False,
install_requires=[
'requirements_parser==0.1.0',
'packageurl_python==0.8.7',
'xmlschema==1.0.14',
'requests==2.22.0',
'packaging==19.1',
],
entry_points={
'console_scripts': [
'cyclonedx-py = cyclonedx.cli.generateBom:main'
]
},
author='Steve Springett',
author_email='[email protected]',
maintainer='Steve Springett',
maintainer_email='[email protected]',
url='https://github.com/CycloneDX/cyclonedx-python',
keywords=["BOM", "SBOM", "SCA"],
license='Apache-2.0',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Legal Industry',
'Intended Audience :: System Administrators',
'Topic :: Security',
'Topic :: Software Development',
'Topic :: System :: Software Distribution',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7'
]
)