-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 1.02 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
#!/usr/bin/env python
# CS4242 Social Media Computing
# Assignment 1
# See LICENSE for details
from setuptools import setup
setup(name='cherami',
version='0.1',
description='A Tweet Classifier',
long_description='Cher Ami is a project that analyses and classifies '
'tweets from Twitter. This project is an assignment for CS4242 Social '
'Media Computing, National University of Singapore.',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Education',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Information Analysis'
],
url='https://github.com/yjwong/cherami',
author='Wong Yong Jie',
author_email='yjwong92@gmail.com',
license='Apache',
packages=['cherami'],
install_requires=[
'tweepy'
],
zip_safe=False)
# vim: set ts=4 sw=4 et: