-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 700 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import setuptools
setuptools.setup(
name="searchit",
version="0.2rc1",
author="Zinyx",
author_email="therealpepega@protonmail.com",
description="Search you favourite webpages",
url="https://github.com/Zinyx-projects/searchit",
packages=setuptools.find_packages(),
license="GPL-3.0",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
install_requires=["requests","beautifulsoup4"],
classifiers=[
"Programming language :: Python :: 3",
"License :: OSI Approved :: GPL-3.0 License",
"Operating System :: OS Independant"
],
python_requires=">=3"
)