-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (20 loc) · 961 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
##############################################################################
## setup.py ##
## -------- ##
## Setup file for the Multi-Stream Transformer package. ##
## ##
## ------------------------------------------------------------------------ ##
## Author: Mathias Otnes ##
## year: 2024 ##
##############################################################################
from setuptools import setup, find_packages
setup(
name='MSTransformer',
version='0.1',
packages=find_packages(),
install_requires=[ # Should read from requirements.txt
'torch',
'numpy',
'matplotlib'
]
)