-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (21 loc) · 838 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
from setuptools import setup, find_packages
import sys
with open('README.md', encoding="utf8") as f:
# strip the header and badges etc
readme = f.read().split('--------------------')[-1]
setup(
name="spe-encoder",
version="0.0.2",
author="David Herel, Hugo Cisneros, Daniela Hradilova, Tomas Mikolov",
description="Sentence embedding technique for textual adversarial attacks",
packages=find_packages(include=['spe'], exclude=['projects', ]),
long_description=readme,
long_description_content_type='text/markdown',
install_requires=['numpy', 'fasttext==0.9.2'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Natural Language :: English",
],
)