distribution: Fix a bunch of distribution information
This is needed before we release publicly.
Change-Id: I4786fc9d845b933627423c63cdc5ffdfea5ae088
diff --git a/debian/copyright b/debian/copyright
index 8f86189..7f36421 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,6 +1,6 @@
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
-Upstream-Name: aiy-board-tools
-Source: https://aiyprojects.googlesource.com/aiy-board-tools
+Upstream-Name: mdt
+Source: https://coral.googlesource.com/mdt
Files: *
Copyright: Copyright 2018 Google, LLC <coral-support@google.com>
diff --git a/setup.py b/setup.py
index f3a42d2..2445964 100755
--- a/setup.py
+++ b/setup.py
@@ -1,3 +1,5 @@
+#!/usr/bin/python3
+
from setuptools import setup, find_packages
from os import path
from io import open
@@ -10,15 +12,15 @@
setup(
name='mdt',
version='1.0',
- description='A command-line tool to manage Mendel embedded systems',
+ description='A command-line tool to manage Mendel Linux embedded systems',
long_description=long_description,
long_description_content_type='text/markdown',
- url='https://aiyprojects.googlesource.com/mdt.git',
+ url='https://coral.googlesource.com/mdt.git',
author='Mendel Linux Software Team',
author_email='coral-support@google.com',
license='Apache 2',
classifiers = [
- 'Development Status :: 3 - Alpha',
+ 'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Utilities',
@@ -27,15 +29,13 @@
'Programming Language :: Python :: 3',
],
keywords='embedded development',
- packages=find_packages(exclude=['contrib', 'docs', 'tests']),
+ packages=find_packages(),
python_requires='>=3.5.0',
install_requires=[
- 'zeroconf',
+ 'zeroconf>=0.19.1',
'paramiko>=2.0.0'
],
data_files=[('share/man/man1', ['man/mdt.1'])],
- package_data={
- },
entry_points={
'console_scripts': [
'mdt=mdt.main:main',