forked from comet-ml/opik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (57 loc) · 2.01 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# *******************************************************
# ____ _ _
# / ___|___ _ __ ___ ___| |_ _ __ ___ | |
# | | / _ \| '_ ` _ \ / _ \ __| | '_ ` _ \| |
# | |__| (_) | | | | | | __/ |_ _| | | | | | |
# \____\___/|_| |_| |_|\___|\__(_)_| |_| |_|_|
#
# Sign up for free at http://www.comet.ml
# Copyright (C) 2015-2021 Comet ML INC
# This file can not be copied and/or distributed without the express
# permission of Comet ML Inc.
# *******************************************************
from pathlib import Path
from setuptools import find_packages, setup
requirements = [
"comet_ml",
"dataclasses; python_version<'3.7.0'",
"flatten-dict",
"types-requests",
]
project_urls = {"Source code": "https://github.com/comet-ml/comet-llm"}
this_directory = Path(__file__).parent
long_description = (this_directory / ".github" / "PACKAGE_README.md").read_text()
setup(
author="Comet ML Inc.",
author_email="[email protected]",
python_requires=">=3.6",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
description="Comet logger for LLM",
install_requires=requirements,
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
keywords="comet_llm",
name="comet_llm",
packages=find_packages("src"),
package_dir={"": "src"},
url="https://www.comet.com",
project_urls=project_urls,
version="1.0.1",
zip_safe=False,
license="MIT",
)