rshell/setup.py

56 wiersze
1.6 KiB
Python

import os
from setuptools import setup
import sys
if sys.version_info < (3,4):
print('rshell requires Python 3.4 or newer.')
sys.exit(1)
from rshell.version import __version__
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name = 'rshell',
version = __version__,
author = 'Dave Hylands',
author_email = 'dhylands@gmail.com',
description = ('A remote shell for working with MicroPython boards.'),
license = 'MIT',
keywords = 'micropython shell',
url = 'https://github.com/dhylands/rshell',
download_url = 'https://github.com/dhylands/rshell/tarball/v0.0.1',
packages=['rshell', 'tests'],
long_description=long_description,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Embedded Systems',
'Topic :: System :: Shells',
'Topic :: Terminals :: Serial',
'Topic :: Utilities',
],
install_requires=[
'pyserial',
'pyudev >= 0.16',
],
entry_points = {
'console_scripts': [
'pyboard=rshell.pyboard:main',
'rshell=rshell.command_line:main'
],
},
extras_require={
':sys_platform == "win32"': [
'pyreadline']
}
)