-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 823 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 823 Bytes
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
# from distutils.core import setup
from setuptools import setup
setup(
name='Corpora',
version='1.1',
author="Krzysztof Dorosz",
author_email="cypreess@gmail.com",
description="Lightweight NLP corpus format for python",
license="MIT",
keywords="text utf corpus corpora nlp toolkit",
packages=['corpora', 'test'],
long_description=open('README.rst').read(),
url="https://github.com/cypreess/corpora/",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Topic :: Utilities",
"Topic :: Text Processing :: Indexing",
"Topic :: Text Processing :: Linguistic",
"Topic :: Text Processing",
],
install_requires=['pyyaml', 'bsddb3'],
)