-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·79 lines (68 loc) · 2.6 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
'''
Setup script for Integrated Semantic Framework.
'''
# This code is a part of coolisf library: https://github.com/letuananh/intsem.fx
# :copyright: (c) 2014 Le Tuan Anh <tuananh.ke@gmail.com>
# :license: MIT, see LICENSE for more details.
import io
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
def read(*filenames, **kwargs):
encoding = kwargs.get('encoding', 'utf-8')
sep = kwargs.get('sep', '\n')
buf = []
for filename in filenames:
with io.open(filename, encoding=encoding) as f:
buf.append(f.read())
return sep.join(buf)
long_description = read('README.md')
pkg_info = {}
exec(read('coolisf/__version__.py'), pkg_info)
with open('requirements.txt', 'r') as infile:
requirements = infile.read().splitlines()
setup(
name='coolisf',
version=pkg_info["__version__"],
url=pkg_info["__url__"],
project_urls={
"Bug Tracker": "https://github.com/letuananh/intsem.fx/issues",
"Source Code": "https://github.com/letuananh/intsem.fx"
},
keywords=["linguistics", "analysis", "semantics", "meaning", "nlp",
"HPSG", "ERG", "MRS", "DMRS", "grammar",
"Sign-based Construction Grammar", "wordnet", "wsd", "word-sense disambiguation"],
license=pkg_info["__license__"],
author=pkg_info["__author__"],
tests_require=[],
install_requires=requirements,
python_requires=">=3.6",
author_email=pkg_info["__email__"],
description=pkg_info["__description__"],
long_description=long_description,
long_description_content_type='text/markdown',
packages=['coolisf',
'coolisf.dao',
'coolisf.data',
'coolisf.mappings',
'coolisf.parsers',
'coolisf.rest',
'coolisf.processors'],
include_package_data=True,
platforms='any',
test_suite='test',
classifiers=['Programming Language :: Python',
'Development Status :: ' + pkg_info["__status__"],
'Natural Language :: English',
'Natural Language :: Japanese',
'Natural Language :: Indonesian',
'Natural Language :: Chinese (Simplified)',
'Natural Language :: Chinese (Traditional)',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: ' + pkg_info["__license__"],
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules']
)