-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 763 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 763 Bytes
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
#!/usr/bin/env python3
from setuptools import setup
setup(
name='coursewatch',
version='1.3.0',
description='Discord bot to watch availability of courses on Ellucian Banner',
author='Rishov Sarkar',
url='https://github.com/ArkaneMoose/CourseWatch',
license='MIT',
packages=['coursewatch'],
install_requires=[
'discord.py >=1.4.1, <2.0.0',
'google-api-python-client >=1.6.2, <1.7.0',
'termcolor >=1.1.0, <2.0.0',
'tldextract >=2.1.0, <3.0.0',
'PyYAML >=5.3.1, <6.0.0',
'beautifulsoup4 >=4.6.0, <5.0.0',
'humanize >=0.5.1, <0.6.0',
],
entry_points={
'console_scripts': [
'coursewatch = coursewatch.main:main',
]
},
zip_safe=True
)