-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
72 lines (64 loc) · 2.38 KB
/
Copy pathsetup.py
File metadata and controls
72 lines (64 loc) · 2.38 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from setuptools import find_packages
from py3canvas 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="py3canvas",
version=version,
description="Client library for the Instructure Canvas REST api.",
long_description=long_description,
author="Tyler Clair",
author_email="tyler.clair@gmail.com",
url="https://github.com/tylerclair/py3canvas",
download_url="https://github.com/tylerclair/py3canvas/releases",
package_dir={"py3canvas": "py3canvas"},
packages=find_packages(),
package_data=package_data,
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"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", "jinja2", "click"],
)
# Original developer and project
# 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'],
# )