-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
55 lines (46 loc) · 1.88 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
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Copyright (C) 2019 David Arroyo Menéndez
# Author: David Arroyo Menéndez <davidam@gnu.org>
# Maintainer: David Arroyo Menéndez <davidam@gnu.org>
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
# This file is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with GNU Emacs; see the file COPYING. If not, write to
# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
# Boston, MA 02110-1301 USA,
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='gaplen',
version='0.0.4',
description='Learning about Natural Language Processing',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.6',
'Topic :: Text Processing :: Linguistic',
],
keywords='nlp nltk',
url='http://github.com/davidam/GAPLEN',
author='David Arroyo Menéndez',
author_email='davidam@gnu.org',
license='GPLv3',
packages=['gaplen', 'gaplen.test', 'gaplen.app'],
package_dir={'gaplen': 'source', 'gaplen.test': 'source/test', 'gaplen.app': 'source/app'},
install_requires=[
'markdown',
'nltk',
],
test_suite='nose.collector',
tests_require=['nose', 'nose-cover3'],
include_package_data=True,
zip_safe=False)