-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (26 loc) · 1.05 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
import os
from setuptools import find_packages, setup
from pandas_toolkit import __version__
_here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(_here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="pandas_toolkit",
version=__version__,
description="A collection of pandas accessors to help with common machine/deep learning related functionality.",
long_description=long_description,
long_description_content_type="text/markdown",
author="asmith26",
url="https://github.com/asmith26/pandas_toolkit.git",
license="Apache-2.0",
include_package_data=True,
packages=find_packages(include=["pandas_toolkit", "pandas_toolkit.*"]),
install_requires=["dm-haiku", "jax", "jaxlib", "jax_toolkit", "pandas", "scikit-learn"],
extras_require={"streamz": ["hvplot", "streamz"]},
python_requires=">=3.7",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
],
)