This repository has been archived by the owner on Dec 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
58 lines (52 loc) · 1.45 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
import pathlib
from setuptools import setup
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='ilmsdump',
version='0',
description='Dump NTHU iLMS data before it is shut down',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/afq984/ilmsdump',
author='Yu, Li-Yu',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3 :: Only',
],
keywords='NTHU, iLMS',
packages=['ilmsdump', 'ilmsserve'],
package_data={
'ilmsserve': ['templates/*.j2'],
},
python_requires='>=3.8, <4',
install_requires=[
'aiohttp',
'yarl',
'lxml',
'click',
'wcwidth',
'pillow',
'aiohttp-jinja2',
],
extras_require={
'dev': [
'pytest',
'pytest-asyncio',
'pytest-cov',
],
},
entry_points={
'console_scripts': [
'ilmsdump=ilmsdump:main',
'ilmsserve=ilmsserve:main',
],
},
)