forked from spdx/tools-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (33 loc) · 1.07 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
#!/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.4.1',
description='SPDX parser and tools.',
packages=['spdx', 'spdx.parsers', 'spdx.writers', 'spdx.parsers.lexers'],
include_package_data=True,
zip_safe=False,
test_suite='setup.test_suite',
install_requires=[
'ply',
'rdflib'
],
author='Ahmed H. Ismail',
author_email='[email protected]',
maintainer='Philippe Ombredanne and SPDX group at the Linux Foundation and others',
maintainer_email='[email protected]',
url='https://github.com/spdx/tools-python',
package_data={'spdx': ['spdx_licenselist.csv']},
license='Apache-2.0',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7'
]
)