forked from fasiha/ebisu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 690 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
setup(name='ebisu',
version='0.5.3',
description='Intelligent quiz scheduling',
long_description=('Public-domain library for quiz scheduling with'
' Bayesian statistics.'),
keywords=('quiz review schedule spaced repetition system srs bayesian '
'probability beta random variable'),
url='http://github.com/fasiha/ebisu',
author='Ahmed Fasih',
author_email='wuzzyview@gmail.com',
license='Unlicense',
packages=['ebisu'],
test_suite='nose.collector',
tests_require=['nose'],
install_requires=[
'scipy', 'numpy'
],
zip_safe=True)