mirror of
https://github.com/not-kennethreitz/blindspin.git
synced 2026-06-05 06:56:14 +00:00
33 lines
621 B
Python
33 lines
621 B
Python
import sys
|
|
import os
|
|
|
|
from setuptools import setup
|
|
|
|
with open('README.rst') as f:
|
|
readme = f.read()
|
|
|
|
|
|
if sys.argv[-1] == "publish":
|
|
os.system("python setup.py sdist bdist_wheel upload")
|
|
sys.exit()
|
|
|
|
setup(
|
|
name='blindspin',
|
|
version='2.0.1',
|
|
long_description=readme,
|
|
packages=['blindspin'],
|
|
url='https://github.com/kennethreitz/blindspin',
|
|
license='MIT',
|
|
author='Kennethreitz',
|
|
author_email='me@kennethreitz.org',
|
|
description='Braille Spinner for Click',
|
|
extras_require={
|
|
'test': [
|
|
'click',
|
|
'pytest',
|
|
'six',
|
|
]
|
|
}
|
|
)
|
|
|