-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 954 Bytes
/
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
'''
Author : knight_byte ( Abunachar )
File : setup.py
'''
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="lpulive",
packages=["lpulive"],
version="0.3.0",
description="Lpulive api for searching, getting messages, getting user detail etc",
long_description_content_type="text/markdown",
long_description=long_description,
url="https://github.com/knight-byte/lpulive",
download_url="https://github.com/knight-byte/lpulive/archive/v0.3.0.tar.gz",
author="Abunachar Yeahhia",
author_email="abunachar1236@gmail.com",
license="MIT",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
keywords=["lpulive search", "lpulive api",
"lpulive", "messaging", "lpu"],
install_requires=["bs4", "requests", "lxml"],
)