forked from 17zuoye/pyirt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 978 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
33
from setuptools import setup
setup(
name='pyirt',
version="0.3.2",
packages=['pyirt',
'pyirt/solver',
'pyirt/util', ],
license='MIT',
description='A python implementation of EM IRT, specializing in large and sparse data set',
author='Junchen Feng',
author_email='frankfeng.pku@gmail.com',
include_package_data=True,
url='https://github.com/junchenfeng/pyirt',
download_url='https://github.com/junchenfeng/pyirt/archive/v0.3.2.tar.gz',
keywords=['IRT', 'EM', 'big data'],
zip_safe=False,
platforms='any',
install_requires=['numpy',
'scipy',
'cython',
'six',
'pymongo',
'tqdm'],
package_data={'pyirt': ["*.pyx"]},
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
],
)