-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·40 lines (37 loc) · 1 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
39
40
#!/usr/bin/env python
from os import path
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
README = path.abspath(path.join(path.dirname(__file__), 'README.md'))
desc = 'A Python util to easily get pics from twitter'
setup(
name='download_twitter',
version='0.0.1',
author='Zaurky',
author_email='zaurky@zeb.re',
description=desc,
long_description=open(README).read(),
license='GPLV2',
url='http://github.com/zaurky/twitter_download',
packages=['download_twitter'],
scripts=[
'bin/all_tweets.py',
'bin/download_image.py',
'bin/refresh_lists.py',
],
install_requires=[
'pexif>=0.13',
'requests>=1.2.3',
'requests-oauthlib>=0.3.2',
'twython>=3.0.0',
'vine_dwl',
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)