-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.py
31 lines (30 loc) · 971 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
"""Set up the lti package."""
from setuptools import setup, find_packages
setup(
name='lti',
version='0.9.5',
description='A python library for building and/or consuming LTI apps',
long_description=open('README.rst', 'rb').read().decode('utf-8'),
maintainer='Ryan Hiebert',
maintainer_email='ryan@ryanhiebert.com',
url='https://github.com/pylti/lti',
package_dir={'': 'src'},
packages=find_packages('src'),
install_requires=[
'lxml',
'oauthlib',
'requests-oauthlib',
],
license='MIT License',
keywords='lti',
zip_safe=True,
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)