forked from roamanalytics/mittens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 797 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
try:
from setuptools import setup, find_packages
except ImportError :
raise ImportError("setuptools module required, please go to "
"https://pypi.python.org/pypi/setuptools and '"
"follow the instructions for installing setuptools")
desc = "A fast implementation of GloVe, with optional retrofitting to " \
"pre-existing GloVe vectors. "
setup(
name="mittens",
version="0.2",
description="Fast GloVe with optional retrofitting.",
long_description=desc,
author="Nick Dingwall, Chris Potts",
author_email="nick/chris@roamanalytics.com",
url="https://github.com/roamanalytics/mittens",
packages=find_packages(exclude=["test"]),
install_requires=[
"numpy"
],
test_suite="mittens/test",
)