-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·42 lines (36 loc) · 1.28 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
#! /usr/bin/env python3
# -*- coding: utf8 -*-
import os
import sys
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "LuigiNLP",
version = "0.3",
author = "Maarten van Gompel",
author_email = "[email protected]",
description = ("LuigiNLP - Pipeline for Natural Language Processing"),
license = "GPL",
keywords = "nlp computational_linguistics",
url = "https://github.com/LanguageMachines/LuigiNLP",
packages=['luiginlp','luiginlp.modules'],
long_description=read('README.rst'),
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Text Processing :: Linguistic",
"Programming Language :: Python :: 3",
"Operating System :: POSIX",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
zip_safe=False,
#include_package_data=True,
#package_data = {'': ['*.wsgi','*.js','*.xsl','*.gif','*.png','*.xml','*.html','*.jpg','*.svg','*.rng'] },
install_requires=['natsort','sciluigi'],
entry_points = { 'console_scripts': [
'luiginlp = luiginlp.luiginlp:main',
]
}
)