-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
33 lines (30 loc) · 859 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
from setuptools import setup
from setuptools import find_packages
__VERSION__ = "0.4.4"
setup(
name="pytorch-skipthoughts",
version=__VERSION__,
description="Multi-GPU Customizable Implementation of Skip-Thoughts in PyTorch",
url="https://github.com/kaniblu/pytorch-skipthoughts",
author="Kang Min Yoo",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3"
],
keywords="pytorch skip-thoughts multi-gpu gpu cuda deep learning nlp",
packages=find_packages("src"),
package_dir={"": "src"},
install_requires=[
"pytorch-sru",
"pytorch-text-utils",
"visdom-pooled",
"pyaap",
"tqdm",
],
package_data={
"": ["*.cu"]
}
)