forked from AlliedToasters/dfencoder
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
35 lines (32 loc) · 786 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
26
27
28
29
30
31
32
33
34
35
from distutils.core import setup
import setuptools
import os
long_desc = """
A python library for building autoencoders with tabular data.
Currently in development.
"""
reqs= [
'torch',
'numpy',
'pandas<1.0.0',
'tqdm',
'scikit-learn',
'tensorboardX',
'matplotlib',
'wheel',
'dill'
]
version = '0.0.37'
setup(
name='dfencoder',
version=f'{version}',
description='Autoencoder Library for Tabular Data',
long_description=long_desc,
author='Michael Klear',
author_email='[email protected]',
url='https://github.com/alliedtoasters/dfencoder',
download_url=f'https://github.com/alliedtoasters/dfencoder/archive/v{version}.tar.gz',
install_requires=reqs,
setup_requires=reqs,
packages=['dfencoder']
)