-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (32 loc) · 967 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
31
32
33
34
import os
from setuptools import setup, find_packages
def readfile(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='glove',
version='1.0.1',
description='Python package for computing embeddings from co-occurence matrices',
long_description=readfile('README.md'),
ext_modules=[],
packages=find_packages(),
py_modules = [],
author='Jonathan Raiman',
author_email='jraiman at mit dot edu',
url='https://github.com/JonathanRaiman/glove',
download_url='https://github.com/JonathanRaiman/glove',
keywords='NLP, Machine Learning',
license='MIT',
platforms='any',
zip_safe=False,
classifiers=[
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.3'
],
setup_requires = [],
install_requires=[
'cython',
'numpy'
],
include_package_data=True,
)