-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (48 loc) · 1.74 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
44
45
46
47
48
49
50
51
52
from setuptools import setup
def readme():
try:
with open('README.rst') as f:
return f.read()
except FileNotFoundError:
pass
setup(
name='stackexchangeparser',
version='2.0.1',
description="A Prodigy compliant parser and API caller for the StackExchange corpus",
long_description=readme(),
keywords='Prodigy StackExchange StackOverflow NLP Natural Language Processing Parsing',
packages=['separser', 'separser.utils'],
url='http://github.com/clrogers2/stackexchangeparser',
license='MIT',
author='Christopher Rogers',
author_email='[email protected]',
python_requires='>3.5',
install_requires=['beautifulsoup4',
'requests',
'plac',
'lxml'
],
entry_points={
'console_scripts': [
'separse=separser.utils.command_line:main'
],
'prodigy_loaders': [
'se_parse = separser:StackExchangeParser'
]
},
include_package_data=True,
classifiers=["Development Status :: 3 - Alpha",
"Topic :: Utilities",
"Topic :: Documentation :: Sphinx",
"Topic :: Text Processing :: Markup :: XML"
"Environment :: Console",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Natural Language :: English",
],
zip_safe=True
)