This repository was archived by the owner on Oct 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
57 lines (51 loc) · 1.83 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
# SPDX-License-Identifer: Apache-2.0
from setuptools import setup
def readme():
<<<<<<< HEAD
with open('.github/README.md') as f:
=======
"""Opens and reads the readme file"""
with open('README.md') as f:
>>>>>>> Adding description to setup.py file
return f.read()
setup(
<<<<<<< HEAD
name="License Coverage Grader",
long_description=readme(),
version='0.1',
py_modules=['lcg_commands'],
author='Nuvadga Christian Tete',
author_email='tetechris20@gmail.com',
description='SPDX Utility to grade License information',
=======
name="License Coverage Grader", # Package name
long_description=readme(), # Package description and documentation
version='0.1', # Package version
py_modules=['cmds'], # Python modules installed
author='Nuvadga Christian Tete', # Source code author
author_email='tetechris20@gmail.com', # Source code email author
description='SPDX Utility to grade License information', # Brief description of package
>>>>>>> Adding description to setup.py file
install_requires=[
'Click',
'xmlbuilder',
'Fabric',
'lxml',
'colorama',
'python-Levenshtein'
], # Required python packages for the utility to run smoothly
entry_points={
<<<<<<< HEAD
'console_scripts': ['spdx-coverage-scan=lcg_commands:scan',
'spdx-coverage-analyse=lcg_commands:analyse',
'spdx-coverage-check=lcg_commands:check',
'spdx-coverage-grade=lcg_commands:grade'],
}
=======
'console_scripts': ['scan=cmds:scan',
'analyse=cmds:analyse',
'check=cmds:check',
'grade=cmds:grade'],
} # Commands shipped with this utility
>>>>>>> Adding description to setup.py file
)