forked from y1ndan/genshinhelper2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
94 lines (85 loc) · 3.4 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import subprocess
from pathlib import Path
from setuptools import find_packages, setup
# long_description = Path('README.md').read_text(encoding='utf-8')
def load_requirements(filename):
with Path(filename).open() as f:
return [line.strip() for line in f if not line.startswith('#')]
def create_mo_files():
data_files = []
locale_dir = Path('genshinhelper/locale')
po_dirs = [lang / 'LC_MESSAGES' for lang in locale_dir.iterdir() if lang.is_dir()]
for dir in po_dirs:
mo_files = []
po_files = [file for file in dir.iterdir() if file.suffix == '.po']
for po_file in po_files:
mo_file = po_file.with_suffix('.mo')
msgfmt_cmd = ['msgfmt', po_file, '-o', mo_file]
subprocess.run(msgfmt_cmd)
mo_files.append(str(mo_file))
data_files.append((str(dir), mo_files))
return data_files
'''
__version__ = None
with open('genshinhelper/__version__.py', encoding='utf-8') as f:
exec(f.read())
if not __version__:
print('Could not find __version__ from genshinhelper/__version__.py')
exit(-1)
'''
setup(
name='genshinhelper',
version='2.1.3',
packages=find_packages(),
url='https://github.com/y1ndan/genshinhelper2',
license='GPLv3',
author='y1ndan',
author_email='[email protected]',
description='A Python library for miHoYo bbs and HoYoLAB Community.',
# long_description=long_description,
long_description_content_type='text/markdown',
keywords='原神 签到 mihoyo hoyolab genshin genshin-impact check-in weibo',
include_package_data=True,
data_files=create_mo_files(),
install_requires=load_requirements('requirements.txt'),
tests_require=['pytest'],
classifiers=[
# As from https://pypi.python.org/pypi?%3Aaction=list_classifiers
# 'Development Status :: 1 - Planning',
# 'Development Status :: 2 - Pre-Alpha',
# 'Development Status :: 3 - Alpha',
# 'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
# 'Development Status :: 6 - Mature',
# 'Development Status :: 7 - Inactive',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
# 'Programming Language :: Python :: 2',
# 'Programming Language :: Python :: 2.3',
# 'Programming Language :: Python :: 2.4',
# 'Programming Language :: Python :: 2.5',
# 'Programming Language :: Python :: 2.6',
# 'Programming Language :: Python :: 2.7',
# 'Programming Language :: Python :: 3',
# 'Programming Language :: Python :: 3.0',
# 'Programming Language :: Python :: 3.1',
# 'Programming Language :: Python :: 3.2',
# 'Programming Language :: Python :: 3.3',
# 'Programming Language :: Python :: 3.4',
# 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: System :: Systems Administration',
],
entry_points={
'console_scripts': [
'genshinhelper=genshinhelper.__main__:main'
]
},
python_requires='>=3.6',
)