forked from ankan2013/poio-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
63 lines (58 loc) · 2.45 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
# -*- coding: utf-8 -*-
#
# Poio Tools for Linguists
#
# Copyright (C) 2001-2013 Poio Project
# Author: Peter Bouda <[email protected]>
# URL: <http://www.cidles.eu/ltll/poio>
# For license information, see LICENSE.TXT
import os
# Use the VERSION file to get version
version_file = os.path.join(os.path.dirname(__file__), 'src', 'poioapi', 'VERSION')
with open(version_file) as fh:
poioapi_version = fh.read().strip()
#import distribute_setup
#distribute_setup.use_setuptools()
from setuptools import setup, find_packages
setup(
name = "poio-api",
description = "A Python Library to access and manipulate linguistically annotated corpus files.",
version = poioapi_version,
url = "http://media.cidles.eu/poio/poio-api/",
# download_url = "https://s3.amazonaws.com/cidles/downloads/poio-api/poio-api-{0}.tar.gz".format(poioapi_version),
#long_description = "Python implementation of the Graph Annotation Framework. (http://www.americannationalcorpus.org/graf-wiki)",
license = "Apache License, Version 2.0",
keywords = ['NLP', 'CL', 'natural language processing',
'computational linguistics', 'parsing', 'tagging',
'annotation', 'linguistics', 'language',
'natural language', "language documentation"],
maintainer = "Peter Bouda",
maintainer_email = "[email protected]",
author = "Peter Bouda",
author_email = "[email protected]",
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Text Processing',
'Topic :: Text Processing :: General',
'Topic :: Text Processing :: Indexing',
'Topic :: Text Processing :: Linguistic',
],
packages = [ 'poioapi', 'poioapi.io' ],
package_dir = { '': 'src' },
package_data = { 'poioapi': ['VERSION', 'mappings/*.json'] },
#install_requires=['PyYAML>=3.09'],
#test_suite = 'graf.test.simple',
)