Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit 1e953f1

Browse files
Create setup.py
1 parent 8a1d950 commit 1e953f1

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

setup.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import setuptools
2+
3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
setuptools.setup(
7+
name='labelpandas',
8+
version='0.0.1',
9+
packages=setuptools.find_packages(),
10+
url='https://github.com/Labelbox/labelpandas',
11+
description='Labelbox Connector for Pandas',
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
14+
install_requires=["labelbox", "packaging"]
15+
)

0 commit comments

Comments
 (0)