mirror of
https://github.com/asciinema/asciinema.git
synced 2025-12-16 19:58:03 +01:00
59 lines
2.1 KiB
Python
59 lines
2.1 KiB
Python
import asciinema
|
|
import sys
|
|
from setuptools import setup
|
|
|
|
if sys.version_info[0] < 3:
|
|
sys.exit('Python < 3 is unsupported.')
|
|
|
|
url_template = 'https://github.com/asciinema/asciinema/archive/v%s.tar.gz'
|
|
requirements = []
|
|
test_requirements = ['nose']
|
|
|
|
with open('README.md', encoding='utf8') as file:
|
|
long_description = file.read()
|
|
|
|
setup(
|
|
name='asciinema',
|
|
version=asciinema.__version__,
|
|
packages=['asciinema', 'asciinema.commands', 'asciinema.asciicast'],
|
|
license='GNU GPLv3',
|
|
description='Terminal session recorder',
|
|
long_description=long_description,
|
|
long_description_content_type='text/markdown',
|
|
author=asciinema.__author__,
|
|
author_email='m@ku1ik.com',
|
|
url='https://asciinema.org',
|
|
download_url=(url_template % asciinema.__version__),
|
|
entry_points={
|
|
'console_scripts': [
|
|
'asciinema = asciinema.__main__:main',
|
|
],
|
|
},
|
|
data_files=[('share/doc/asciinema', ['CHANGELOG.md',
|
|
'CODE_OF_CONDUCT.md',
|
|
'CONTRIBUTING.md',
|
|
'README.md',
|
|
'doc/asciicast-v1.md',
|
|
'doc/asciicast-v2.md']),
|
|
('share/man/man1', ['man/asciinema.1'])],
|
|
install_requires=requirements,
|
|
tests_require=test_requirements,
|
|
classifiers=[
|
|
'Development Status :: 5 - Production/Stable',
|
|
'Environment :: Console',
|
|
'Intended Audience :: Developers',
|
|
'Intended Audience :: System Administrators',
|
|
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
|
|
'Natural Language :: English',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.3',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Programming Language :: Python :: 3.5',
|
|
'Programming Language :: Python :: 3.6',
|
|
'Topic :: System :: Shells',
|
|
'Topic :: Terminals',
|
|
'Topic :: Utilities'
|
|
],
|
|
)
|