This repository has been archived by the owner on Jun 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 435
/
setup.py
50 lines (48 loc) · 1.4 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='termtosvg',
version='1.1.0',
license='BSD 3-clause license',
author='Nicolas Bedos',
author_email='nicolas.bedos@gmail.com',
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 :: MacOS',
'Operating System :: POSIX :: BSD',
'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'
],
python_requires='>=3.5',
packages=[
'termtosvg',
'termtosvg.tests'
],
scripts=['scripts/termtosvg'],
include_package_data=True,
install_requires=[
'lxml',
'pyte',
'wcwidth',
],
extras_require={
'dev': [
'coverage',
'pylint',
'twine',
'wheel',
]
}
)