-
Notifications
You must be signed in to change notification settings - Fork 74
/
setup.py
29 lines (25 loc) · 849 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
from setuptools import setup, find_packages
description = 'A PyTorch implementation of Paragraph Vectors (doc2vec).'
with open('README.md') as f:
long_description = f.read()
with open('requirements.txt') as f:
requires = f.read().splitlines()
setup(
name='paragraph-vectors',
version='0.0.1',
author='Nejc Ilenic',
description=description,
long_description=long_description,
license='MIT',
keywords='nlp documents embedding machine-learning',
install_requires=requires,
packages=find_packages(),
test_suite='tests',
classifiers=[
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
],
)