-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
67 lines (59 loc) · 1.85 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
60
61
62
63
64
65
66
67
# Author: Yuji Sasaki <[email protected]>
# Copyright (c) 2022 Yuji Sasaki
# License: MIT License
from setuptools import setup
import os
import linelog2py
DESCRIPTION = "linelog2py: import LINE Talk History"
NAME = 'linelog2py'
AUTHOR = 'Yuji Sasaki'
AUTHOR_EMAIL = '[email protected]'
URL = 'https://github.com/jyu0414/linelog2py'
LICENSE = 'MIT License'
DOWNLOAD_URL = 'https://github.com/jyu0414/linelog2py'
VERSION = linelog2py.__version__
PYTHON_REQUIRES = ">=3.6"
INSTALL_REQUIRES = [
]
EXTRAS_REQUIRE = {
}
PACKAGES = [
'linelog2py'
]
CLASSIFIERS = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Text Editors :: Text Processing',
'Topic :: Text Editors :: Word Processors'
]
with open(f'{os.environ["GITHUB_WORKSPACE"]}/README.md', 'r') as fp:
readme = fp.read()
with open(f'{os.environ["GITHUB_WORKSPACE"]}/CONTACT.txt', 'r') as fp:
contacts = fp.read()
long_description = readme + '\n\n' + contacts
setup(name=NAME,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
maintainer=AUTHOR,
maintainer_email=AUTHOR_EMAIL,
description=DESCRIPTION,
long_description=long_description,
long_description_content_type='text/markdown',
license=LICENSE,
url=URL,
version=VERSION,
download_url=DOWNLOAD_URL,
python_requires=PYTHON_REQUIRES,
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
packages=PACKAGES,
classifiers=CLASSIFIERS
)