-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 704 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 704 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
29
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='Web Bayes',
version='0.1',
description="""Quick project for learning how to implement
a bayesian filter for test data""",
author='Andrew Adams',
author_email='adamsar@gmail.com',
url='http://www.andrew-adams.net',
install_requires=[
'celery',
'httplib2',
'feedparser',
'nltk',
'numpy',
'scipy',
'scikit-learn'
],
setup_requires=[],
packages=['web_bayes'],
include_package_data=True,
zip_safe=False
)