-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (29 loc) · 801 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
31
32
33
34
35
import re
from setuptools import setup
version = re.search(
'^__version__\s*=\s*"(.*)"',
open('lugat/__version__.py').read(),
re.M
).group(1)
with open("README.md", "rb") as f:
long_descr = f.read().decode("utf-8")
setup(
name="lugat",
packages=["lugat"],
entry_points={
"console_scripts": ['lugat = lugat.__main__:main']
},
version=version,
description="TDK Güncel Türkçe Sözlük için komut satırı uygulaması.",
long_description=long_descr,
long_description_content_type="text/markdown",
keywords="tdk,cli",
author="Adem Özay",
author_email="[email protected]",
url="https://github.com/ademozay/lugat",
install_requires=[
'requests >= 2.0.0',
'termcolor >= 1.0.0'
],
zip_safe=True,
)