forked from spdx/tools-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·59 lines (53 loc) · 1.55 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from setuptools import setup
import unittest
def test_suite():
return unittest.TestLoader().discover('tests', pattern='test_*.py')
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name='spdx-tools',
version='0.7.0a3',
description='SPDX parser and tools.',
long_description=long_description,
long_description_content_type='text/markdown',
packages=[
'spdx',
'spdx.parsers',
'spdx.parsers.lexers',
'spdx.writers',
'examples',
],
include_package_data=True,
zip_safe=False,
test_suite='setup.test_suite',
install_requires=[
'ply',
'rdflib',
'click',
'pyyaml',
'xmltodict',
],
python_requires='>=3.6',
entry_points={
'console_scripts': [
'convertor = spdx.cli_tools.convertor:main',
'parser = spdx.cli_tools.parser:main',
],
},
author='Ahmed H. Ismail',
author_email='[email protected]',
maintainer='Philippe Ombredanne, SPDX group at the Linux Foundation and others',
maintainer_email='[email protected]',
url='https://github.com/spdx/tools-python',
license='Apache-2.0',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
)