forked from xpt1x/SnapAttendance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (41 loc) · 1.43 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
46
47
48
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
import uims_api
setup(
name="uims-api",
packages=["uims_api"],
version=uims_api.__version__,
install_requires=[
"requests >= 2.21.0",
"beautifulsoup4 >= 4.6.3",
],
description="A Python library to access information via https://uims.cuchd.in",
long_description=long_description,
long_description_content_type="text/markdown",
author="Ritiek Malhotra",
author_email="[email protected]",
license="MIT",
# We support only Python 3, but we don't want to force users to avoid Python 2
# Things might not work as expected on Python 2. Better use Python 3.
# python_requires=">=3.4",
url="https://github.com/cu-unofficial/uims-api",
# TODO: Put this up on PyPI?
# download_url="https://pypi.org/project/uims-sessions/",
keywords=[
"uims",
"chandigarh university",
"api",
],
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Utilities",
],
)