-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (28 loc) · 972 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
#!/usr/bin/python
# -*- coding: utf-8 -*-
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
from setuptools import setup
VERSION = '1.0.0'
setup(
name='bbremote',
version=VERSION,
scripts=['bbremote'],
packages=['remote'],
author='Barebox',
author_email='[email protected]',
maintainer='Barebox',
maintainer_email='[email protected]',
description='barebox remote control.',
long_description='''barebox remote control is for controlling barebox from a remote host via scripts..''',
url='http://www.barebox.org/doc/latest/index.html',
keywords='serial remote control',
classifiers=[
"Topic :: Utilities",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Embedded Systems",
],
)