-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
40 lines (36 loc) · 1.24 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
import setuptools
from pesuacademy import __version__ as VERSION
DESCRIPTION = "Python wrapper and APIs for the PESU Academy website"
try:
with open("README.md", "r") as fh:
long_description = fh.read()
except FileNotFoundError:
long_description = DESCRIPTION
setuptools.setup(
name="pesuacademy",
version=VERSION,
author="Aditeya Baral",
author_email="[email protected]",
description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/HackerSpace-PESU/pesuacademy-py",
packages=setuptools.find_packages(),
install_requires=[
"requests",
"requests-html",
"beautifulsoup4",
"lxml_html_clean"
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.9',
keywords=["pesu", "pesu academy", "api", "wrapper", "python"]
)