-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 1.04 KB
/
setup.py
File metadata and controls
29 lines (25 loc) · 1.04 KB
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
from setuptools import setup, find_packages
setup(
name="scrap-protocol",
version="0.6.0",
author="Federico Baglioni", # Ho messo il tuo nome!
description="Python implementation of SCRAP (Serial Compact Reliable Asynchronous Protocol)",
long_description="A pure Python implementation of the SCRAP protocol for testing and interfacing with scrap-c.",
# Trova automaticamente il package 'scrap' nella cartella 'pysrc'
package_dir={"": "pysrc"},
packages=find_packages(where="pysrc"),
# Elenco delle dipendenze che verranno installate automaticamente da pip
install_requires=[
"pyserial>=3.5",
"cobs",
],
# Metadati aggiuntivi
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License", # Puoi scegliere la licenza che preferisci
"Operating System :: OS Independent",
"Topic :: System :: Hardware :: Hardware Drivers",
"Topic :: Software Development :: Embedded Systems",
],
python_requires='>=3.6',
)