-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
41 lines (37 loc) · 1.21 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
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(name='ieml',
version="1.0.4",
description='Python implementation of the language IEML',
long_description=readme(),
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.5',
'Topic :: Text Processing :: Linguistic',
'Topic :: Text Processing :: Indexing'
],
keywords='ieml semantic-representation syntax semantic-relations semantic-distance',
url='https://github.com/IEMLdev/ieml',
author='Louis van Beurden',
author_email='[email protected]',
license='GPLv3',
packages=find_packages(exclude=['scripts', '*.test']),
install_requires=[
'numpy',
'bidict',
'ply',
'scipy',
'cached-property',
'tqdm',
'appdirs',
'pygit2',
'pandas',
'pyyaml',
'pylatex'
],
test_suite='nose2.collector.collector',
tests_require=['nose2'],
include_package_data=True,
zip_safe=False)