-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
49 lines (43 loc) · 1.34 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
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="eksi",
version="0.4.0",
description="Komut satırında Ekşisözlük!",
keywords=["ekşisözlük", "ekşi", "eksi", "sözlük"],
long_description=get_long_description(),
long_description_content_type="text/markdown",
author="Furkan Onder",
author_email="[email protected]",
url="https://github.com/furkanonder/eksigundem/",
license="MIT",
python_requires=">=3.7",
packages=["eksi"],
install_requires=[
"beautifulsoup4==4.9.3",
],
extras_require={},
zip_safe=False,
include_package_data=False,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Utilities",
"Environment :: Console",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows :: Windows 10",
],
entry_points={
"console_scripts": [
"eksi = eksi.__main__:main",
]
},
)