forked from gpoore/text2qti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
65 lines (56 loc) · 2.18 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
# -*- coding: utf-8 -*-
#
# Copyright (c) 2020, Geoffrey M. Poore
# All rights reserved.
#
# Licensed under the BSD 3-Clause License:
# http://opensource.org/licenses/BSD-3-Clause
#
import sys
if sys.version_info < (3, 6):
sys.exit('text2qti requires Python 3.6+')
import pathlib
from setuptools import setup, find_packages
# Extract the version from version.py, using functions in fmtversion.py
fmtversion_path = pathlib.Path(__file__).parent / 'text2qti' / 'fmtversion.py'
exec(compile(fmtversion_path.read_text(encoding='utf8'), 'text2qti/fmtversion.py', 'exec'))
version_path = pathlib.Path(__file__).parent / 'text2qti' / 'version.py'
version = get_version_from_version_py_str(version_path.read_text(encoding='utf8'))
readme_path = pathlib.Path(__file__).parent / 'README.md'
long_description = readme_path.read_text(encoding='utf8')
setup(name='text2qti',
version=version,
py_modules=[],
packages=find_packages(),
package_data = {},
description='Create quizzes in QTI format from Markdown-based plain text',
long_description=long_description,
long_description_content_type='text/markdown',
author='Geoffrey M. Poore',
author_email='gpoore@gmail.com',
url='http://github.com/gpoore/text2qti',
license='BSD',
keywords=['QTI', 'IMS Question & Test Interoperability', 'quiz', 'test',
'exam', 'assessment', 'markdown', 'LaTeX', 'plain text'],
python_requires='>=3.6',
install_requires=[
'bespon>=0.4',
'markdown>=3.2',
],
# https://pypi.python.org/pypi?:action=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Education',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Education :: Testing',
],
entry_points = {
'console_scripts': ['text2qti = text2qti.cmdline:main'],
'gui_scripts': ['text2qti_tk = text2qti.gui.tk:main'],
},
)