-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (21 loc) · 1001 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
25
# from setuptools import setup
# setup(
# name='datalabel',
# version='0.1',
# packages=['labeler', 'labeler/class_utils'],
# author='TitanLabs',
# author_email='[email protected]',
# description='quickly and effortlessly edit your dataframes without having to write any code. Its intuitive interface makes it ideal for both experienced data professionals and those new to data editing.',
# install_requires=['pandas', 'requests', 'fastapi', 'uvicorn'],
# )
from setuptools import setup, find_packages
setup(
name='datalabel',
version='0.1.5',
packages=find_packages(),
include_package_data=True,
author='TitanLabs',
author_email='[email protected]',
description='quickly and effortlessly edit your dataframes without having to write any code. Its intuitive interface makes it ideal for both experienced data professionals and those new to data editing.',
install_requires=['pandas', 'requests', 'fastapi', 'uvicorn', 'jinja2'],
)