From f68d6d3aadeaaad2894ba246912770b9f351b65a Mon Sep 17 00:00:00 2001 From: Euan M <69640923+Moronibot@users.noreply.github.com> Date: Wed, 3 Nov 2021 09:50:10 +0000 Subject: [PATCH] Updated setup.py and Pipfile (#102) --- Pipfile | 2 +- setup.py | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Pipfile b/Pipfile index dfc0178..c22a291 100644 --- a/Pipfile +++ b/Pipfile @@ -10,9 +10,9 @@ requests = "*" zeroconf = "*" types-dataclasses = "*" dataclasses = "*" +semver = "*" # TODO: too big, install it manually if you want it #pytransform3d = "==1.2.1" -semver = "*" [dev-packages] flake8 = "*" diff --git a/setup.py b/setup.py index 1136e54..a50d9fb 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ description='SDK for the Automata Eva robotic arm', author='Automata', license='Apache License 2.0', - author_email='charlie@automata.tech', + author_email='louis@automata.tech', url="https://github.com/automata-tech/eva_python_sdk", packages=setuptools.find_packages(), long_description=long_description, @@ -21,6 +21,7 @@ 'websocket-client', 'zeroconf', 'dataclasses', + 'semver', # TODO: too big, install it manually if you want it # 'pytransform3d', ], @@ -30,5 +31,5 @@ "Operating System :: OS Independent", "License :: OSI Approved :: Apache Software License", ], - python_requires='>=3.0', + python_requires='>=3.6', )