-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
43 lines (36 loc) · 1.17 KB
/
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
35
36
37
38
39
40
41
42
43
from setuptools import setup, find_packages
from subprocess import Popen, PIPE
import io,os,sys
def tag():
return os.getenv("version")
def read_text_lines(fname):
with io.open(fname) as fd:
lines=fd.readlines()
return ''.join(lines)
setup(
name="pyrxnlp",
version=tag(),
packages=find_packages(),
description='Natural language processing tools',
long_description=open("README.rst").read(),
classifiers=[
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Text Processing :: Linguistic'
],
author='RxNLP',
author_email='[email protected]',
license='LGPL',
url='https://github.com/RxNLP/pyrxnlp',
download_url='https://github.com/RxNLP/pyrxnlp/archive/{0}.tar.gz'.format(tag()),
keywords=['Sentence Clustering', 'Topics Extraction',
'Opinosis Summarization', 'Text Similarity'],
install_requires=[
'requests==2.9.1'
],
include_package_data=True,
entry_points={
}
)