-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (42 loc) · 1.07 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
from setuptools import setup
setup(
name='courator',
version='0.1.0',
description='An app to rate and suggest university courses',
url='https://github.com/Courator/courator',
author='Matthew D. Scholefield',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='courator',
packages=['courator'],
install_requires=[
'fastapi',
'starlette',
'pydantic',
'loguru',
'databases',
'pymysql',
'passlib',
'python-multipart',
'bcrypt',
'uvicorn',
'aiomysql',
'pyjwt',
'httpx',
'syncer',
'beautifulsoup4',
'async_lru'
],
entry_points={
'console_scripts': [
'courator=courator.__main__:main'
],
}
)