Skip to content

Commit

Permalink
Upd/theme docs (#19)
Browse files Browse the repository at this point in the history
* Upd: theme-docs

* Update README.md

* Update setup.py and Bump v0.2.3 -> v0.2.4

* Update setup.py for pb

---------

Co-authored-by: ustkkc <kaankkox42@gmail.com>
  • Loading branch information
TarikKaanKoc and ustkkc committed Apr 6, 2023
1 parent 6507464 commit 27b8190
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
from setuptools import setup, find_packages
import os
import io

def get_long_description():
base_dir = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(base_dir, "README.md"), encoding="utf-8") as f:
with open("README.md", "r", encoding="utf-8") as f:
return f.read()

setup(
Expand All @@ -14,6 +11,7 @@ def get_long_description():
author="Mint&Lemon",
license="Apache License, Version 2.0",
long_description=get_long_description(),
long_description_content_type="text/markdown",
url="https://github.com/Teknofest-Nane-Limon/mintlemon-turkish-nlp",
project_urls={
"Tracker": "https://github.com/Teknofest-Nane-Limon/mintlemon-turkish-nlp/issues",
Expand Down Expand Up @@ -45,11 +43,14 @@ def get_long_description():
python_requires=">=3.7",
packages=find_packages(),
package_data={"mintlemon": ["data/*"]},
include_package_data=True,install_requires=["numpy>=1.20.0",
"regex>=2021.4.4",
"zeyrek>=0.1.3",
"nltk>=3.8.1",
"pandas>=1.3.4",
"scikit-learn>=1.2.0",],
include_package_data=True,
install_requires=[
"numpy>=1.20.0",
"regex>=2021.4.4",
"zeyrek>=0.1.3",
"nltk>=3.8.1",
"pandas>=1.3.4",
"scikit-learn>=1.2.0",
],
extras_require={"dev": ["yapf", "bumpver", "flake8", "coverage", "pytest"]},
)

0 comments on commit 27b8190

Please sign in to comment.