2013-10-05 12:43:53 +02:00
|
|
|
try:
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
except ImportError:
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
2013-10-06 01:15:08 +02:00
|
|
|
import asciinema
|
|
|
|
|
|
|
|
|
|
|
2013-10-06 01:23:01 +02:00
|
|
|
url_template = 'https://github.com/sickill/asciinema/archive/v%s.tar.gz'
|
|
|
|
|
|
2013-10-05 19:09:39 +02:00
|
|
|
requirements = [
|
2013-10-07 19:25:52 +02:00
|
|
|
'requests>=1.1.0'
|
2013-10-05 19:09:39 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
|
name='asciinema',
|
2013-10-06 01:15:08 +02:00
|
|
|
version=asciinema.__version__,
|
2013-10-05 19:09:39 +02:00
|
|
|
packages=['asciinema', 'asciinema.commands'],
|
|
|
|
|
license='MIT',
|
|
|
|
|
description='Command line recorder for asciinema.org service',
|
2013-10-06 01:15:08 +02:00
|
|
|
author=asciinema.__author__,
|
2013-10-05 19:09:39 +02:00
|
|
|
author_email='m@ku1ik.com',
|
2014-02-09 14:05:55 +01:00
|
|
|
url='https://asciinema.org',
|
2013-10-06 01:23:01 +02:00
|
|
|
download_url=(url_template % asciinema.__version__),
|
2013-10-05 19:09:39 +02:00
|
|
|
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',
|
2013-10-06 01:03:15 +02:00
|
|
|
'Programming Language :: Python :: 3.2',
|
|
|
|
|
'Programming Language :: Python :: 3.3',
|
2013-10-05 13:39:22 +02:00
|
|
|
'Topic :: System :: Shells',
|
|
|
|
|
'Topic :: Terminals',
|
|
|
|
|
'Topic :: Utilities'
|
2013-10-05 19:09:39 +02:00
|
|
|
],
|
|
|
|
|
)
|