forked from cemoody/lda2vec
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 673 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 673 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
from setuptools import setup
from setuptools import find_packages
import os
with open('requirements.txt') as f:
install_requires = f.read().splitlines()
# If building on RTD, don't install anything
if os.environ.get('READTHEDOCS', None) == 'True':
install_requires = []
kw = dict(
name='lda2vec',
version='0.2',
description='Tools for interpreting natural language',
author='Christopher E Moody',
author_email='chrisemoody@gmail.com',
maintainer='Vishwa',
maintainer_email='mail@vishwa.xyz',
license='MIT',
python_requires='>=2.7',
install_requires=install_requires,
packages=find_packages(),
url='')
setup(**kw)