-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 704 Bytes
/
setup.py
File metadata and controls
19 lines (18 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import setuptools
setuptools.setup(
name="toolstack",
version="0.1.5",
author="Mohammed Yusuf Khan",
author_email="hello@mykhan.me",
description="A collection of useful tools to speed-up the data processing, cleaning and pipelining.",
url="https://github.com/getmykhan/toolstack",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD-3-Clause License",
"Operating System :: OS Independent",
],
keywords=['toolkit', 'nlp', 'data cleaning', 'toolstack', 'data science', 'machine learning'],
install_requires=['pandas', 'numpy', 'tqdm'],
python_requires='>=3.7',
)