-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.py
41 lines (32 loc) · 1.18 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
from setuptools import setup, find_packages
import pathlib
project_dir = pathlib.Path(__file__).parent.resolve()
long_description = (project_dir / "README.md").read_text(encoding="utf-8")
setup(
name="searchor",
version="2.5.2",
description="⚡️ Quick and easy search engine queries.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ArjunSharda/Searchor",
author="Arjun Sharda",
author_email="sharda.aj17@gmail.com",
classifiers=[ # Optional
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=find_packages(where="src"), # Required
python_requires=">=3.7, <4",
install_requires=["pyperclip", "aenum", "click", "bs4", "requests"],
entry_points={
"console_scripts": [
"searchor=searchor.main:cli",
],
},
project_urls={
"Homepage":"https://github.com/ArjunSharda/Searchor",
"Bug Tracker":"https://github.com/ArjunSharda/Searchor/issues"
},
)