-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 712 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (23 loc) · 712 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
cd = os.path.dirname(__file__)
# read version info
long_description = open(os.path.join(cd, 'README.rst'), "rt", encoding="utf-8").read()
setup(
name="better_lstm",
version=0.1,
author="Keita Kurita",
author_email="keita.kurita@gmail.com",
description="LSTM with best practices incorporated",
long_description=long_description,
license="MIT",
url="https://github.com/keitakurita/torchtable",
python_requires = ">=3.6",
keywords = "PyTorch, deep learning, machine learning",
setup_requires=["pytest", ],
install_requires=[
"torch>=1.0.0",
],
packages=find_packages(),
)