forked from nbedos/termtosvg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (56 loc) · 1.47 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
from setuptools import setup
setup(
name='termtosvg',
version='0.3.0',
description='Record terminal sessions as SVG animations',
long_description='A Linux terminal recorder written in Python '
'which renders your command line sessions as '
'standalone SVG animations.',
url='https://github.com/nbedos/termtosvg',
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: System :: Shells',
'Topic :: Terminals'
],
packages=['termtosvg'],
package_data={
'': [
'LICENSE'
],
'termtosvg': [
'data/LICENSE.md',
'data/termtosvg.ini',
]
},
py_modules=[
'termtosvg.anim',
'termtosvg.asciicast',
'termtosvg.config',
'termtosvg.term',
],
entry_points={
'console_scripts': [
'termtosvg=termtosvg.__main__:main'
]
},
install_requires=[
'pyte',
'setuptools',
'svgwrite'
],
extras_require={
'dev': [
'coverage',
'twine',
'wheel',
]
}
)