-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (25 loc) · 830 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
26
27
from distutils.core import setup
from TweetBase import __version__
import io
def read(*filenames, **kwargs):
encoding = kwargs.get('encoding', 'utf-8')
sep = kwargs.get('sep', '\n')
buf = []
for filename in filenames:
with io.open(filename, encoding=encoding) as f:
buf.append(f.read())
return sep.join(buf)
setup(
name='TweetBase',
version=__version__,
author='geduldig',
author_email='[email protected]',
packages=['TweetBase'],
url='https://github.com/geduldig/TweetBase',
download_url = 'https://github.com/geduldig/TweetBase/tarball/master',
license='MIT',
keywords='twitter,couchdb',
description='Write tweets to database',
long_description=read('README.txt'),
install_requires = ['TwitterAPI', 'TwitterGeoPics', 'couchdb']
)