-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
46 lines (39 loc) · 1.54 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Copyright (c) Minwook Kim
# Licensed under the MIT License.
""" Setup
"""
from setuptools import setup, find_packages
from codecs import open
from os import path
import pathlib
import pkg_resources
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
# requirements
with open(path.join(here, 'requirements.txt'), encoding='utf-8') as requirements_txt:
install_requires = [
str(requirement)
for requirement
in pkg_resources.parse_requirements(requirements_txt)
]
setup(
name='ts3l',
version='v0.60',
description='A PyTorch Lightning-based library for self- and semi-supervised learning on tabular data.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Alcoholrithm/TabularS3L',
author='Minwook Kim',
author_email='kmiiiaa@pusan.ac.kr',
# Note that this is a string of words separated by whitespace, not a list.
keywords='tabular-data semi-supervised-learning self-supervised-learning VIME SubTab SCARF Denoising-AutoEncoder SwitchTab',
packages=find_packages(),
# The `include_package_data` parameter in the `setup()` function is used to specify whether to
# include non-Python files (such as data files, configuration files, etc.) that are part of the
# package when it is installed.
include_package_data=False,
install_requires=install_requires,
python_requires='>=3.7',
)