-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
52 lines (46 loc) · 1.53 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
49
50
51
52
from pathlib import Path
from setuptools import setup
CURRENT_DIR = Path(__file__).parent
def get_long_description():
readme_md = CURRENT_DIR / "README.md"
with open(readme_md, encoding="utf8") as ld_file:
return ld_file.read()
setup(
name="bor",
version="0.2.0",
long_description=get_long_description(),
long_description_content_type="text/markdown",
description="User-friendly, tiny source code searcher written by pure Python.",
keywords=["code searcher"],
author="Furkan Onder",
author_email="[email protected]",
url="https://github.com/furkanonder/bor/",
license="MIT",
python_requires=">=3.8",
packages=["bor"],
install_requires=[],
extras_require={},
zip_safe=False,
include_package_data=False,
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Topic :: Utilities",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows :: Windows 10",
],
entry_points={
"console_scripts": [
"bor = bor.bor:main",
]
},
)