-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
24 lines (23 loc) · 943 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
from setuptools import find_packages, setup
setup(
name="trace-attributes", # Choose a unique name for PyPI
version="7.1.0",
author="Karthik Kalyanaraman",
author_email="[email protected]",
description="LangTrace - Trace Attributes",
long_description="LangTrace - Trace Attributes",
long_description_content_type="text/markdown",
url="https://github.com/Scale3-Labs/langtrace-trace-attributes", # Project home page
package_dir={"": "src/python"},
packages=find_packages(where="src/python"),
install_requires=[
"pydantic>=1.8", # Example dependency, adjust according to your project's needs
],
python_requires=">=3.6",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
include_package_data=False, # To include non-code files specified in MANIFEST.in
)