-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
27 lines (23 loc) · 865 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
from setuptools import find_packages, setup
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
with open("./requirements/runtime.txt", "r", encoding='utf-8') as f:
requirements = f.readlines()
with open("./requirements/web.txt", "r", encoding='utf-8') as f:
requirements.extend(f.readlines())
setup(
name="dingo-python",
version="1.5.0",
author="Dingo",
description="A Comprehensive Data Quality Evaluation Tool for Large Models",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/DataEval/dingo",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
install_requires=[i.strip() for i in requirements],
python_requires='>=3.10',
)