-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (38 loc) · 1.36 KB
/
Copy pathsetup.py
File metadata and controls
45 lines (38 loc) · 1.36 KB
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
44
45
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from setuptools import find_packages
from pycanvas import __version__ as version
long_description = 'A client library for accessing the Instructure Canvas rest library. Mostly generated by the swagger-codegen-cli tool.'
package_data = {
'': ['LICENSE', 'README.md'],
}
# with open('README.md') as f:
# readme = f.read()
setup(
name='pycanvas',
version=version,
description='Client library for the Instructure Canvas REST api.',
long_description=long_description,
author='Paul Gower',
author_email='p.gower@gmail.com',
url='https://github.com/PGower/PyCanvas',
download_url='https://github.com/PGower/PyCanvas/releases',
package_dir={'pycanvas': 'pycanvas'},
packages=find_packages(),
package_data=package_data,
license='BSD',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Programming Language :: Python',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords=['canvas', 'instructure'],
install_requires=['requests'],
)