forked from RusticiSoftware/TinCanPython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 765 Bytes
/
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='tincan',
packages=[
'tincan',
'tincan/conversions',
'tincan/documents',
],
version='1.0.0',
description='A Python library for implementing Tin Can API.',
author='Rustici Software',
author_email='mailto:[email protected]',
maintainer='Brian J. Miller',
maintainer_email='mailto:[email protected]',
url='http://rusticisoftware.github.io/TinCanPython/',
license='Apache License 2.0',
keywords=[
'Tin Can',
'TinCan',
'Tin Can API',
'TinCanAPI',
'Experience API',
'xAPI',
'SCORM',
'AICC',
],
install_requires=[
'aniso8601',
'pytz',
],
)