forked from jart/redisbayes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (32 loc) · 1.24 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
# -*- coding: utf-8 -*-
# this is not a love song
# http://packages.python.org/distribute/setuptools.html
# http://diveintopython3.org/packaging.html
# http://wiki.python.org/moin/CheeseShopTutorial
# http://pypi.python.org/pypi?:action=list_classifiers
from ez_setup import use_setuptools
use_setuptools(version="0.6c11")
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "redisbayes",
version = __import__("redisbayes").__version__,
description = u"Naïve Bayesian Text Classifier on Redis",
long_description = read("README.rst"),
author = "Justine Tunney",
author_email = "[email protected]",
url = "https://github.com/jart/redisbayes",
license = "MIT",
install_requires = ["redis"],
py_modules = ["redisbayes", "ez_setup"],
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Database",
"Topic :: Communications :: Email",
],
)