-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (31 loc) · 1.02 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
from setuptools import setup
setup(
name='reteach',
version='1.0.0',
description='Convert Blackboard (TM) 9 courses into Moodle 1.9 courses',
packages=['reteach'],
package_data={'reteach': ['moodle.xml.template']},
include_package_data=True,
zip_safe=False,
author='Adam Zapletal',
author_email='[email protected]',
url='http://reteach.org/',
license='GPL v3',
platforms=['any'],
keywords=['blackboard', 'moodle', 'convert', 'lms'],
install_requires=['lxml', 'jinja2'],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU General Public License (GPL)'
],
long_description='Convert Blackboard (TM) 9 courses into Moodle 1.9 courses',
entry_points={
"console_scripts": [
"reteach = reteach.main:main",
]
},
)