-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
37 lines (32 loc) · 1.14 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
36
37
import setuptools
with open("requirements.txt", "r") as f:
reqs = f.read().split("\n")
with open("requirements_test.txt", "r") as f:
test_reqs = f.read().split("\n")
with open('README.md') as f:
README = f.read()
setuptools.setup(
name='sac3',
version='0.0.1',
description='A package to detect hallucination',
long_description=README,
long_description_content_type='text/markdown',
url='https://github.com/test',
author='Jiaxin Zhang',
author_email='jiaxin_zhang@intuit.com',
license='Apache License 2.0',
packages=['sac3'],
install_requires=reqs,
python_requires=">=3.8",
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)