-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (40 loc) · 1.18 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
44
45
from distutils.core import setup
def readme(file='', split=False):
with open(file) as f:
if split:
return f.readlines()
else:
return f.read()
setup(
name='CanvasScraper',
version='0.5.5dev',
description='D/L Lectures/Data from Canvas',
long_description=readme('README.md'),
url='https://gitlab.com/stucamp/canvasscraper',
author='Stu Campbell',
author_email='[email protected]',
packages=[
'canvasscraper',
'canvasscraper.fileops',
'canvasscraper.objects',
],
license='MIT License',
install_requires=[
'pyderman',
'selenium',
'youtube-dl',
],
classifiers=[
'Topic :: Education',
'Topic :: Education :: Computer Aided Instruction (CAI)',
'Topic :: Multimedia :: Video',
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Environment :: Web Environment',
'License :: Public Domain',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)
# python setup.py sdist;twine upload dist/*