-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (33 loc) · 997 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
36
from setuptools import setup, find_packages
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
]
setup(
name="ekler",
version="0.6.1",
packages=find_packages(
include=["ekler"],
exclude=[
"tests*",
".vscode",
"venv",
"__*",
],
),
classifiers=classifiers,
py_modules=["ekler"],
python_requires=">=3",
keywords="turkish, turkce, isim, ekler",
license="MIT",
description="Turkce kelimelerin sonuna fonetik yapilarina uygun ekleri ekleyen module.",
long_description_content_type="text/markdown",
long_description=open("README.md").read(),
url="https://github.com/alioguzhan/ekler",
author="Ali Oguzhan Yildiz",
author_email="[email protected]",
)