-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (40 loc) · 1.64 KB
/
Copy pathsetup.py
File metadata and controls
43 lines (40 loc) · 1.64 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
36
37
38
39
40
41
42
43
from setuptools import setup, find_packages
import os
# Read README content for long description
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
# Read requirements
with open("requirements.txt", "r") as f:
install_requires = [line.strip() for line in f if line.strip() and not line.startswith("#")]
setup(
name="datatune-client",
author="Abhijith Neil Abraham",
author_email="abhijith@vitalops.ai",
description="A unified platform for ML data management and streaming",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/vitalops/datatune",
packages=find_packages(),
install_requires=install_requires,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="machine learning, data management, llm training, data streaming",
python_requires=">=3.7",
zip_safe=False,
project_urls={
"Documentation": "https://docs.datatune.ai",
"Source": "https://github.com/vitalops/datatune",
"Bug Reports": "https://github.com/vitalops/datatune/issues",
},
version="0.0.2",
)