-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (30 loc) · 1.01 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
'''
Author : knight-byte ( Abunachar )
File : setup.py
'''
# --------IMPORTS -------
import setuptools
# -------- SETUP ---------
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="ums",
packages=["ums"],
version="0.3.0",
description="LPU UMS api for extracting user data like Profile, annoucement, messages, Timetable, Grades etc.",
long_description_content_type="text/markdown",
long_description=long_description,
url="https://github.com/knight-byte/Ums",
download_url="https://github.com/knight-byte/Ums/archive/v0.3.0.tar.gz",
author="Abunachar Yeahhia",
author_email="[email protected]",
license="MIT",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
keywords=["lpu ums", "ums", "student",
"university management system", "university", "lpu"],
install_requires=["bs4", "requests", "lxml"],
)