forked from akb89/pyfn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (54 loc) · 2.14 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
53
54
55
56
57
58
#!/usr/bin/env python3
"""pyfn setup.py.
This file details modalities for packaging the pyfn application.
"""
from setuptools import setup
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setup(
name='pyfn',
description='A python module to process data for Frame Semantic Parsing',
author='Alexandre Kabbach',
author_email='akb@3azouz.net',
long_description=long_description,
long_description_content_type='text/markdown',
version='1.3.7',
url='https://gitlab.com/akb89/pyfn',
download_url='https://pypi.org/project/pyfn/#files',
license='MIT',
keywords=['framenet', 'xml', 'frame semantic parsing', 'preprocessing',
'coling2018', 'pipeline', 'semafor', 'open-sesame'],
platforms=['any'],
packages=['pyfn',
'pyfn.exceptions',
'pyfn.loading',
'pyfn.marshalling',
'pyfn.marshalling.marshallers',
'pyfn.marshalling.unmarshallers',
'pyfn.models',
'pyfn.utils'],
package_data={'pyfn': ['logging/*.yml']},
include_package_data=True,
entry_points={
'console_scripts': [
'pyfn = pyfn.main:main'
],
},
install_requires=['pyyaml>=4.2b1', 'mmh3>=2.5.1', 'lxml>=4.3.0',
'pytz>=2018.7'],
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Linguistic'],
zip_safe=True,
)