2013-10-05 12:43:53 +02:00
|
|
|
try:
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
except ImportError:
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
2013-10-05 19:09:39 +02:00
|
|
|
requirements = [
|
|
|
|
|
'requests>=2.0.0'
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
|
name='asciinema',
|
|
|
|
|
version='0.9.5',
|
|
|
|
|
packages=['asciinema', 'asciinema.commands'],
|
|
|
|
|
license='MIT',
|
|
|
|
|
description='Command line recorder for asciinema.org service',
|
|
|
|
|
author='Marcin Kulik',
|
|
|
|
|
author_email='m@ku1ik.com',
|
|
|
|
|
url='http://asciinema.org',
|
|
|
|
|
download_url='https://github.com/sickill/asciinema/archive/v0.9.5.tar.gz',
|
|
|
|
|
entry_points={
|
2013-10-05 12:43:53 +02:00
|
|
|
'console_scripts': [
|
|
|
|
|
'asciinema = asciinema.__main__:main',
|
|
|
|
|
],
|
|
|
|
|
},
|
2013-10-05 19:09:39 +02:00
|
|
|
install_requires=requirements,
|
|
|
|
|
classifiers=[
|
2013-10-05 13:39:22 +02:00
|
|
|
'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 :: 2 :: Only',
|
|
|
|
|
'Topic :: System :: Shells',
|
|
|
|
|
'Topic :: Terminals',
|
|
|
|
|
'Topic :: Utilities'
|
2013-10-05 19:09:39 +02:00
|
|
|
],
|
|
|
|
|
)
|