-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (36 loc) · 1.41 KB
/
setup.py
File metadata and controls
40 lines (36 loc) · 1.41 KB
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
"""
This is the setup file to install oa_nlp.
"""
from distutils.core import setup
#from setuptools import setup
def long_description():
with open('README.md', 'r') as readme:
readme_text = readme.read()
return(readme_text)
setup(name='oa_nlp',
version='0.1.0',
description='Open Access Natural Language processing provides tools for PLOS '
' search API and build NLTK corpora.',
long_description=long_description(),
author='Bill OConnor',
author_email='wtoconnor at gmail dot com',
url='https://github.com/openAccess/OA_NLP',
package_dir={'': 'src'},
packages=['oa_nlp',
'oa_nlp.nltk',
'oa_nlp.plos_api',
],
scripts=['bin/plossolr'],
data_files=[('', ['README.md'])],
classifiers=['Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: Apache License, Version 2.0',
'Programming Language :: Python :: 2.7',
'Operating System :: OS Independent',
'Topic :: Text Processing :: Markup :: XML',
'Topic :: Other/Nonlisted Topic'],
install_requires=['docopt', 'lxml']
)