forked from perslev/CanvasSync
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 1.04 KB
/
Copy pathsetup.py
File metadata and controls
33 lines (29 loc) · 1.04 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
#!/usr/bin/env python
from setuptools import setup
from CanvasSync._version import __version__
readme = open('README.md').read()
requirements = list(filter(None, open("requirements.txt").read().split("\n")))
setup(
name='CanvasSync',
version=__version__,
description='Synchronizes modules, assignments and files from a '
'Canvas server to a local folder',
long_description=readme,
author='Mathias Perslev',
author_email='mathias@perslev.com',
url='https://github.com/perslev/CanvasSync',
license="LICENSE.txt",
package_dir={'CanvasSync': 'CanvasSync'},
entry_points={
'console_scripts': [
'canvas=CanvasSync.__main__:main',
],
},
install_requires=requirements,
classifiers=['Development Status :: 3 - Alpha',
'Environment :: Console',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License']
)