-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
42 lines (39 loc) · 1.23 KB
/
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
34
35
36
37
38
39
40
41
42
# This file is part of tdmclient.
# Copyright 2021-2023 ECOLE POLYTECHNIQUE FEDERALE DE LAUSANNE,
# Miniature Mobile Robots group, Switzerland
# Author: Yves Piguet
#
# SPDX-License-Identifier: BSD-3-Clause
from setuptools import setup
long_description = ""
for filename in [
"intro.md",
"install.md",
"tools.md",
"transpiler.md",
"repl.md",
"notebooks.md",
"lowlevel.md",
]:
with open("doc/" + filename, "r") as f:
long_description += f.read()
setup(
name="tdmclient",
version="0.1.21",
author="Yves Piguet",
packages=["tdmclient", "tdmclient.tools", "tdmclient.notebook", ],
description="Communication with Thymio II robot via the Thymio Device Manager",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/epfl-mobots/tdm-python",
install_requires=[
"websockets",
"zeroconf",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Education",
],
python_requires=">=3.6",
)