forked from sktelecom/onot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (35 loc) · 1.04 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
#!/usr/bin/env python3
# SPDX-FileCopyrightText: Copyright 2022 SK TELECOM CO., LTD. <[email protected]>
# SPDX-License-Identifier: Apache-2.0
import setuptools
VERSION = '1.0.0'
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="onot",
version=VERSION,
author="Haksung Jang",
author_email="[email protected]",
description="Generate open source software notice based on the SPDX document",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sktelecom/onot",
packages=setuptools.find_packages(),
install_requires=[
'click',
'openpyxl',
'pandas',
'requests',
],
entry_points={
"console_scripts": [
"onot=onot.__main__:main"
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)