summaryrefslogtreecommitdiff
path: root/python3-yaspin/setup.py
blob: 8008c8be84f55a8ad800d21c51e3265341ba6eda (plain)
    1 
    2 # -*- coding: utf-8 -*-
    3 
    4 # DO NOT EDIT THIS FILE!
    5 # This file has been autogenerated by dephell <3
    6 # https://github.com/dephell/dephell
    7 
    8 try:
    9     from setuptools import setup
   10 except ImportError:
   11     from distutils.core import setup
   12 
   13 
   14 import os.path
   15 
   16 readme = ''
   17 here = os.path.abspath(os.path.dirname(__file__))
   18 readme_path = os.path.join(here, 'README.rst')
   19 if os.path.exists(readme_path):
   20     with open(readme_path, 'rb') as stream:
   21         readme = stream.read().decode('utf8')
   22 
   23 
   24 setup(
   25     long_description=readme,
   26     name='yaspin',
   27     version='1.2.0',
   28     description='Yet Another Terminal Spinner',
   29     python_requires='!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,<4.0,>=2.7',
   30     project_urls={"documentation": "https://github.com/pavdmyt/yaspin/blob/master/README.rst", "homepage": "https://github.com/pavdmyt/yaspin", "repository": "https://github.com/pavdmyt/yaspin"},
   31     author='Pavlo Dmytrenko',
   32     author_email='mail@pavdmyt.com',
   33     license='MIT',
   34     keywords='spinner console terminal loader indicator',
   35     classifiers=['Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Environment :: MacOS X', 'Environment :: Other Environment', 'Intended Audience :: Developers', 'Intended Audience :: End Users/Desktop', 'Intended Audience :: Other Audience', 'Intended Audience :: System Administrators', 'License :: OSI Approved :: MIT License', 'Natural Language :: English', 'Operating System :: MacOS :: MacOS X', 'Operating System :: POSIX :: Linux', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: Implementation', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Software Development', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: User Interfaces', 'Topic :: System :: Logging', 'Topic :: System :: Monitoring', 'Topic :: System :: Shells', 'Topic :: Terminals', 'Topic :: Utilities'],
   36     packages=['yaspin'],
   37     package_dir={"": "."},
   38     package_data={"yaspin": ["data/*.json"]},
   39     install_requires=[],
   40     extras_require={"dev": ["flake8<3.7", "isort==4.*,>=4.3.0", "pytest==4.*,>=4.6.0", "pytest-cov==2.*,>=2.10.0", "pytest-sugar==0.*,>=0.9.0", "pytest-xdist==1.*,>=1.33.0"]},
   41 )

Generated by cgit