forked from spdx/tools-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·48 lines (42 loc) · 1.24 KB
/
setup.py
File metadata and controls
executable file
·48 lines (42 loc) · 1.24 KB
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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from __future__ import absolute_import
from __future__ import print_function
from setuptools import setup
import unittest
def test_suite():
return unittest.TestLoader().discover('tests', pattern='test_*.py')
setup(
name='spdx-tools',
version='0.5.4',
description='SPDX parser and tools.',
packages=['spdx', 'spdx.parsers', 'spdx.writers', 'spdx.parsers.lexers'],
package_data={'spdx': ['spdx_licenselist.csv']},
include_package_data=True,
zip_safe=False,
test_suite='setup.test_suite',
install_requires=[
'ply',
'rdflib',
'six',
],
entry_points={
'console_scripts': [
'spdx-tv2rdf = spdx.tv_to_rdf:main',
],
},
tests_require=[
'xmltodict',
],
author='Ahmed H. Ismail',
author_email='ahm3d.hisham@gmail.com',
maintainer='Philippe Ombredanne, SPDX group at the Linux Foundation and others',
maintainer_email='pombredanne@gmail.com',
url='https://github.com/spdx/tools-python',
license='Apache-2.0',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7'
]
)