-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
25 lines (24 loc) · 871 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
# coding: utf-8
from setuptools import setup
setup (
name = 'simplebayes',
version = '1.5.8',
url = 'https://github.com/hickeroar/simplebayes',
author = 'Ryan Vennell',
author_email = '[email protected]',
description = 'A memory-based, optional-persistence naïve bayesian text classifier.',
long_description = open('README.rst', 'r').read(),
license = 'MIT',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: Utilities',
],
packages = ['simplebayes'],
)