-
Notifications
You must be signed in to change notification settings - Fork 39
/
setup.py
30 lines (28 loc) · 888 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
28
29
30
from setuptools import setup, find_packages
from twphotos import __version__
setup(
name='twitter-photos',
version=__version__,
description="Command-line tool to get photos from Twitter accounts.",
long_description=open('README.rst').read(),
keywords='twitter photos',
author='Shichao An',
author_email='[email protected]',
url='https://github.com/shichao-an/twitter-photos',
license='BSD',
install_requires=['python-twitter', 'requests', 'urllib3'],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'twphotos = twphotos.photos:main',
],
},
classifiers=[
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
],
)