forked from opcode-eu-org-libs/asciicast2movie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup-asciicast2movie.py
34 lines (33 loc) · 999 Bytes
/
setup-asciicast2movie.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
import setuptools
import asciicast2movie
setuptools.setup(
name="asciicast2movie",
py_modules=["asciicast2movie"],
version="0.3.5",
author="Robert Paciorek",
author_email="robert@opcode.eu.org",
description="generate movie (video clip) from asciicast",
long_description=asciicast2movie.__doc__,
long_description_content_type="text/plain",
keywords='asciicast video movie mp4 tty pyte moviepy',
install_requires=[
'tty2img',
'moviepy'
],
entry_points={
'console_scripts': [
'asciicast2movie=asciicast2movie:main',
],
},
license='MIT',
url="https://bitbucket.org/OpCode-eu-org/asciicast2movie/",
project_urls={
'GitHub': 'https://github.com/opcode-eu-org-libs/asciicast2movie/'
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.5',
)