-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 1.09 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
from setuptools import setup, find_packages
with open("./README.md", "r") as fh:
long_description = fh.read()
setup(
name="util_helper",
version="0.0.5",
packages=find_packages(),
#install_requires=[],
#package_data={'glai': ['back_end/model_db/gguf_models/*.json']},
#include_package_data=True,
author="Łael Al-Halawani",
author_email="[email protected]",
description="Few scripts to help with various tasks such as text preprocessing, file handling.",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"License :: Free for non-commercial use",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
],
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['file handling', 'string comparison', 'text preprocessing'],
url="https://github.com/laelhalawani/util_helper",
)