-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
32 lines (30 loc) · 1021 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
import setuptools
with open(r'README.md', mode=r'r') as readme_handle:
long_description = readme_handle.read()
setuptools.setup(
name=r'hopular',
version=r'1.0.0',
author=r'Bernhard Schäfl',
author_email=r'schaefl@ml.jku.at',
url=r'https://github.com/ml-jku/hopular',
description=r'A novel deep learning architecture based on continuous modern Hopfield networks' +
r' for tackling small tabular datasets.',
long_description=long_description,
long_description_content_type=r'text/markdown',
packages=setuptools.find_packages(),
python_requires=r'>=3.8.0',
install_requires=[
r'pytorch-lightning>=1.4.9',
r'fairscale>=0.4.3',
r'scikit-learn>=1.0.1',
r'pandas>=1.3.3',
r'hopfield-layers@git+https://github.com/ml-jku/hopfield-layers'
],
zip_safe=True,
include_package_data=True,
entry_points={
r'console_scripts': [
r'hopular = hopular.interactive:console_entry'
]
}
)