-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (32 loc) · 1.15 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
import pathlib
from setuptools import setup, find_packages
VERSION = '1.0.0a4'
DESCRIPTION = 'Generating Question Answer Database from Unstructured Text'
LONG_DESCRIPTION = pathlib.Path("README.md").read_text()
setup(
name="qa_genie",
version=VERSION,
author="Irsh Vijayvargia",
author_email="<[email protected]>",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
license="The Unlicense",
project_urls = {
"GitHub": "https://github.com/1rsh/qa-genie"
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
python_requires = ">=3.9",
install_requires=['hugchat==0.3.0', 'pandas', 'tqdm'],
packages=find_packages(),
include_package_data=True,
keywords=['python', 'question generation', 'question answer', 'nlp', 'llm', 'llm for question answering', 'huggingface'],
)