-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (34 loc) · 1.07 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
import setuptools
def readme():
with open('README.md') as f:
return f.read()
setuptools.setup(
name='perfectextractor',
version='0.4',
author='Martijn van der Klis',
author_email='M.H.vanderKlis@uu.nl',
description='Extracting Perfects (and related forms) from parallel corpora',
long_description=readme(),
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Text Processing :: Linguistic',
],
url='https://github.com/UUDigitalHumanitieslab/perfectextractor',
license='MIT',
packages=setuptools.find_packages(),
include_package_data=True,
python_requires='>=3.6',
install_requires=[
'click',
'lxml',
'requests',
],
entry_points={
'console_scripts': ['extract=perfectextractor.extract:extract',
'count=perfectextractor.count:count'],
},
)