-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 856 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 856 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, find_packages
from codecs import open
import os
here = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file
with open(os.path.join(here, 'README.md'), 'r') as f:
long_description = f.read()
setup(
name='seq2attn',
version='1.0',
description='Implementation of the Seq2Attn architecture for sequence-to-sequence task in PyTorch',
long_description=long_description,
url='https://github.com/i-machine-think/seq2attn',
license='Apache License 2.0',
classifiers=[
'Intended Audience :: Research',
'Topic :: Software Development',
'Programming Language :: Python :: 3.6'
],
keywords='seq2seq py-torch development',
packages=find_packages(),
install_requires=[
'matplotlib',
],
python_requires='>3.6',
)