-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1.19 KB
/
setup.py
File metadata and controls
35 lines (32 loc) · 1.19 KB
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
"""Package setup configuration for DataStudio."""
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = [
line.strip() for line in f if line.strip() and not line.startswith('#')
]
setup(
name="DataStudio",
version="0.1.0",
description="Config-driven multimodal data processing pipeline for MLLMs",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author="Yi Zhang",
author_email="yi.zhang.4096@gmail.com",
url="https://github.com/Open-Bee/DataStudio",
packages=find_packages(),
install_requires=requirements,
extras_require={
"wandb": ["wandb>=0.16.0"],
"test": ["pytest>=7.4.0", "pytest-cov>=4.1.0"],
"all": ["wandb>=0.16.0", "pytest>=7.4.0", "pytest-cov>=4.1.0"],
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires=">=3.10",
)