-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
43 lines (40 loc) · 1.5 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
from setuptools import setup
requirements = [
'requests>=2.2.1',
]
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: MacOS X',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'License :: OSI Approved :: MIT License',
'License :: OSI Approved :: Python Software Foundation License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows :: Windows 7',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Adaptive Technologies',
'Topic :: Education :: Computer Aided Instruction (CAI)',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
]
setup(name='hpitclient',
version='0.36',
description='Python Client Libraries for HPIT.',
author='TutorGen, Inc.',
author_email='[email protected]',
maintainer='Raymond Chandler III',
maintainer_email='[email protected]',
url='https://github.com/tutorgen/HPIT-python-client',
download_url='https://github.com/tutorgen/HPIT-python-client',
platforms=['linux', 'mac osx', 'windows 7', 'windows 8'],
license='MIT LICENSE',
packages=['hpitclient'],
classifiers=classifiers,
install_requires=requirements,
)