-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 907 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
setup(
name='substweet',
version='0.0.1',
description='Post GIFs of a video with subtitles to twitter.',
url='https://github.com/cnelson/substweet',
author='Chris Nelson',
author_email='[email protected]',
license='License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
keywords='twitter ffmpeg gif shitpost',
packages=find_packages(),
install_requires=[
'colorama',
'python-twitter'
],
entry_points={
'console_scripts': [
'substweet = substweet.prog:entrypoint'
]
}
)