forked from zimmerman-team/fulltext
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (30 loc) · 982 Bytes
/
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
#!/bin/env python
import os
from distutils.core import setup
name = 'fulltext'
version = '0.4'
release = '1'
readme = os.path.join(os.path.dirname(__file__), 'README.rst')
versrel = version + '-' + release
long_description = file(readme).read()
setup(
name = name,
version = versrel,
description = 'Convert binary files to plain text for indexing.',
long_description = long_description,
author = 'Ben Timby',
author_email = 'btimby@gmail.com',
maintainer = 'Ben Timby',
maintainer_email = 'btimby@gmail.com',
url = 'http://github.com/btimby/' + name + '/',
license = 'GPLv3',
packages = ["fulltext"],
classifiers = (
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Indexing',
),
)