File size: 1,319 Bytes
d195d4f |
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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
[metadata]
name = factool
version = attr: version.__version__
description = Factuality Detection for Generative AI
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/GAIR-NLP/factool
author = GAIR Research Group
license = Apache License
classifiers =
Intended Audience :: Developers
Topic :: Text Processing
Topic :: Scientific/Engineering :: Artificial Intelligence
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3 :: Only
[options]
packages = find:
include_package_data = True
install_requires =
openai==0.27.8
PyYAML==6.0
asyncio==3.4.3
numpy
pydantic==1.10.9
scholarly==1.7.11
scikit-learn
aiohttp==3.8.4
fastapi==0.96.0
uvicorn==0.22.0
jsonlines
[options.package_data]
factool.utils.prompts = *.yaml
[flake8]
application-import-names = factool
exclude = __pycache__, datasets
extend-ignore = E203, BLK100, W503, FI10, FI11, FI12, FI13, FI14, FI15, FI16, FI17, FI58
filename = ./factool/*.py, ./setup.py
max-line-length = 88
[isort]
filter_files = true
force_sort_within_sections = true
multi_line_output = 3
order_by_type = false
profile = black
src_paths = factool |