-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
24 lines (23 loc) · 913 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
# -*- coding: utf-8 -*-
""" setup.py file for sentimentube. """
from setuptools import setup
setup(
name="sentimentube",
version="0.1.0",
author="Søren Howe Gersager, Anders Lundberg Rahbek",
author_email="[email protected], [email protected]",
description="Youtube sentiment analysis with webinterface",
license="MIT",
keywords="youtube sentiment analysis",
url="https://github.com/syre/datamining-with-python",
packages=["sentimentube", "test"],
scripts=["sentimentube/webserve.py"],
long_description=open('README.md').read(),
install_requires=["requests", "flask", "matplotlib", "sqlalchemy", "nltk"],
tests_require=["tox", "nose", "nose-pathmunge", "flake8", "pylint"],
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"License :: OSI Approved :: MIT License",
],
)