-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 705 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (27 loc) · 705 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
26
27
28
29
30
from setuptools import setup
from setuptools import find_packages
__VERSION__ = "0.1.3"
setup(
name="pytorch-sru",
version=__VERSION__,
description="Simple Recurrent Unit (SRU) in PyTorch",
url="https://github.com/kaniblu/pytorch-sru",
author="Kang Min Yoo",
author_email="k@nib.lu",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3"
],
keywords="pytorch cuda deep learning",
packages=find_packages("src"),
package_dir={"": "src"},
install_requires=[
"cupy",
"pynvrtc"
],
package_data={
"": ["*.cu"]
}
)