forked from ritchie46/sequence
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 648 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 648 Bytes
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
from setuptools import setup, find_packages
setup(
name="sequence",
version="0.1",
author="Ritchie Vink",
author_email="ritchie46@gmail.com",
url="https://github.com/ritchie46/sequence",
license="mit",
packages=find_packages(),
install_requires=[
"numpy>=1.17.3",
"torch==1.4.0",
"tensorboardX",
"dumpster @ git+https://github.com/ritchie46/dumpster.git#egg=dumpster",
"patool~=1.12",
"pyunpack~=0.1.2",
"nltk>=3.4.4",
"dask[complete]",
"matplotlib>=3.1.0",
"scipy~=1.3.2",
"tqdm~=4.40.0",
],
python_requires=">3.6",
)