-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1.12 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
from setuptools import setup
with open('README.md', 'r') as f:
readme = f.read()
setup(
name='ejustian_cli',
description='''
\rA command line interface app that allows EJUST students to manage all their stuff.
''',
long_description=readme,
long_description_content_type='text/markdown',
version='1.0.0',
author='Abdelrahman Wael Abdelkhalek',
author_email='[email protected]',
home_page='https://github.com/Abdelrahman0W/ejustian-cli',
packages=[
'ej_cli', 'ej_cli.sis', 'ej_cli.loader',
'ej_cli.map', 'ej_cli.wifi', 'ej_cli.kanban',
'ej_cli.saved', 'ej_cli.attendance', 'ej_cli.classroom',
'ej_cli.auth',
],
entry_points={
'console_scripts': [
'ej = ej_cli.__main__:main'
]
},
include_package_data=True,
python_requires=">=3.8.*",
install_requires=[
"requests", "beautifulsoup4",
"lxml", "inquirer",
"tabulate", "python-kanban",
"google-api-python-client", "google-auth-httplib2",
"google-auth-oauthlib", "pydantic"
],
license='MIT',
)