-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
52 lines (48 loc) · 1.7 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
"""
Setup odenet.
"""
from setuptools import setup
long_description=\
"""
Open German Wordnet
---
* German resource in a multi-lingual WordNet intitiative
* Combined from two sources:
- The OpenThesaurus German synonym lexicon (https://www.openthesaurus.de/)
- the Open Multilingual WordNet English (http://compling.hss.ntu.edu.sg/omw/) resource, the PrincetonWordNet of English (PWN).
* Goals:
- Including resource into NLTK
- Provide ILI links to other languages
- ...
"""
setup(
name="odenet",
packages=["odenet"],
package_data={"odenet": ["wordnet/deWordNet.xml"]},
include_package_data=True,
version="0.1.0",
description="Open German WordNet",
author="Melanie Siegel",
author_email="melanie.siegel@h-da.de",
url="https://ikum.mediencampus.h-da.de/projekt/open-de-wordnet-initiative/", # maybe use github url
keywords=["german", "wordnet", "xml"],
classifiers=[
'Development Status :: 2 - Pre-Alpha', # can be updated, when project is more mature
'Environment :: Console',
'Intended Audience :: End Users/Desktop', # TODO: is it really usable by End Users?
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License', # Python codes, there is no License classifier for CC-BY-SA 4.0
'Natural Language :: German',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Education',
'Topic :: Text Processing :: Linguistic'
],
install_requires=[
'networkx',
'matplotlib'
],
long_description=long_description
)