Verison 1.0.3 Release
Based on Buildbotics 0.4.14
This commit is contained in:
40
setup.py
Normal file
40
setup.py
Normal file
@@ -0,0 +1,40 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
from setuptools import setup
|
||||
import json
|
||||
|
||||
pkg = json.load(open('package.json', 'r'))
|
||||
|
||||
|
||||
setup(
|
||||
name = pkg['name'],
|
||||
version = pkg['version'],
|
||||
description = 'Buildbotics Machine Controller',
|
||||
long_description = open('README.md', 'rt').read(),
|
||||
author = 'Joseph Coffland',
|
||||
author_email = 'joseph@buildbotics.org',
|
||||
platforms = ['any'],
|
||||
license = pkg['license'],
|
||||
url = pkg['homepage'],
|
||||
package_dir = {'': 'src/py'},
|
||||
packages = ['bbctrl', 'inevent', 'lcd', 'camotics'],
|
||||
include_package_data = True,
|
||||
entry_points = {
|
||||
'console_scripts': [
|
||||
'bbctrl = bbctrl:run'
|
||||
]
|
||||
},
|
||||
scripts = [
|
||||
'scripts/update-bbctrl',
|
||||
'scripts/upgrade-bbctrl',
|
||||
'scripts/sethostname',
|
||||
'scripts/reset-video',
|
||||
'scripts/config-wifi',
|
||||
'scripts/config-screen',
|
||||
'scripts/edit-config',
|
||||
'scripts/edit-boot-config',
|
||||
'scripts/browser',
|
||||
],
|
||||
install_requires = 'tornado sockjs-tornado pyserial pyudev smbus2'.split(),
|
||||
zip_safe = False,
|
||||
)
|
||||
Reference in New Issue
Block a user