mirror of
https://github.com/asciinema/asciinema.git
synced 2025-12-16 11:48:13 +01:00
47 lines
1.3 KiB
Python
47 lines
1.3 KiB
Python
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
import asciinema
|
|
|
|
|
|
url_template = 'https://github.com/sickill/asciinema/archive/v%s.tar.gz'
|
|
|
|
requirements = [
|
|
'requests>=1.1.0'
|
|
]
|
|
|
|
setup(
|
|
name='asciinema',
|
|
version=asciinema.__version__,
|
|
packages=['asciinema', 'asciinema.commands'],
|
|
license='MIT',
|
|
description='Command line recorder for asciinema.org service',
|
|
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',
|
|
],
|
|
},
|
|
install_requires=requirements,
|
|
classifiers=[
|
|
'Development Status :: 4 - Beta',
|
|
'Environment :: Console',
|
|
'Intended Audience :: Developers',
|
|
'Intended Audience :: System Administrators',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Natural Language :: English',
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3.2',
|
|
'Programming Language :: Python :: 3.3',
|
|
'Topic :: System :: Shells',
|
|
'Topic :: Terminals',
|
|
'Topic :: Utilities'
|
|
],
|
|
)
|