-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
30 lines (28 loc) · 955 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "treenet",
version = "0.0.4",
author = "Romain Edelmann",
author_email = "romain.edelmann@epfl.ch",
description = "Recursive Neural Networks for PyTorch",
license = "GPLv3",
keywords = "recursive neural network tree lstm tree-lstm",
url = "https://github.com/epfl-lara/treenet",
download_url = "https://github.com/epfl-lara/treenet/archive/0.0.4.tar.gz",
packages=['treenet', 'tests'],
long_description=read('README.rst'),
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
project_urls={
"Source": 'https://github.com/epfl-lara/treenet',
"Tracker": 'https://github.com/epfl-lara/treenet/issues',
},
install_requires=[
"torch>=0.4"
]
)