forked from kevinmcmahon/tagger
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 968 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 968 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
27
28
#!/usr/bin/env python
# -*- coding; utf-8 -*-
from distutils.core import setup
setup(
name='tagger',
version='0.5.20110811',
description='A module for extracting relevant tags from text documents.',
long_description=open('README.rst', 'r').read(),
author='Alessandro Presta',
author_email = 'https://github.com/apresta',
maintainer='Torkn',
maintainer_email = 'https://github.com/Torkn',
url='https://github.com/Torkn/tagger',
license='Python Software Foundation License',
packages=['tagger',],
package_dir={'tagger': '.'},
package_data={'tagger': ['data/*.pkl', 'doc/*', 'data/*', 'tests/*', 'README.rst']},
requires=['stemming (>=1.0)', 'nltk (>=2.0)'],
provides=['tagger'],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Text Processing",
"Operating System :: OS Independent",
"License :: OSI Approved :: Python Software Foundation License",
],
)