-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·38 lines (31 loc) · 1.09 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
34
35
36
37
38
#!/usr/bin/env python
'''The setup and build script for the twitterbot-utils library.'''
import os
from setuptools import setup, find_packages
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(
name='twitterbot_utils',
version='0.1.13',
author='Oleg Strizhechenko',
author_email='oleg.strizhechenko@gmail.com',
license='GPL',
url='https://github.com/strizhechenko/twitterbot_utils',
keywords='twitter api bot',
description='wrapper around the Tweepy',
long_description=(read('README.rst')),
packages=find_packages(exclude=['tests*']),
install_requires=['tweepy', 'requests', 'requests-oauthlib', 'pymorphy2', 'dictator'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Topic :: Software Development',
'Topic :: Utilities',
],
)