forked from SmileyChris/uterm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 889 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from setuptools import setup, find_packages
import io
import os
base_path = os.path.dirname(os.path.realpath(__file__))
setup(
name='uterm',
version='0.7',
author='Chris Beaven',
author_email='[email protected]',
description='Micropython-friendly terminal',
long_description=io.open(
os.path.join(base_path, 'README.rst'), encoding='utf-8').read(),
url='https://github.com/SmileyChris/uterm',
packages=find_packages(),
install_requires=[
'pyserial',
'pyte',
],
entry_points={
'console_scripts': [
'uterm=uterm.terminal:main',
],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Topic :: Software Development :: Embedded Systems',
]
)