-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 907 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
from distutils.core import setup
from setuptools import find_packages
NAME = 'rag'
VERSION = '0.1.1'
LICENSE = 'MIT'
DESCRIPTION = 'Virtual Sale Assistant'
with open('README.md', encoding="utf-8") as file:
description = file.read()
setup(
name=NAME,
version=VERSION,
packages=find_packages(where="./rag"),
package_dir={"": "rag"},
license=LICENSE,
zip_safe=True,
description=DESCRIPTION,
author='Hung Ng. Quoc',
author_email='[email protected]',
url='https://github.com/hungnq1310/rag_pdf_services',
python_requires='>=3.9',
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.9'
],
)