File tree Expand file tree Collapse file tree 4 files changed +29
-3
lines changed Expand file tree Collapse file tree 4 files changed +29
-3
lines changed Original file line number Diff line number Diff line change 9
9
10
10
# Python egg metadata, regenerated from source files by setuptools.
11
11
* .egg-info
12
+ dist /
13
+ build /
Original file line number Diff line number Diff line change @@ -42,9 +42,9 @@ Serial communication with an Arduino: [Arduino Source Code](https://github.com/a
42
42
python -m examples.arduino_serial
43
43
```
44
44
45
- ### Bluetooth Example
45
+ ### Bluetooth Example with Two Computers
46
46
47
- Dependency :
47
+ Dependencies :
48
48
```
49
49
sudo apt-get install libbluetooth-dev bluez
50
50
pip install pybluez
Original file line number Diff line number Diff line change
1
+ [metadata]
2
+ # This includes the license file in the wheel.
3
+ license_file = LICENSE
4
+
5
+ [bdist_wheel]
6
+ # This flag says to generate wheels that support both Python 2 and Python
7
+ # 3. If your code will not run unchanged on both Python 2 and 3, you will
8
+ # need to generate separate wheels for each Python version that you
9
+ # support.
10
+ universal =1
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_packages
2
2
3
+ # Create Package
4
+ # rm dist/*
5
+ # python setup.py sdist
6
+ # python setup.py bdist_wheel
7
+ # Upload
8
+ # (test) twine upload --repository-url https://test.pypi.org/legacy/ dist/*
9
+ # (release) twine upload dist/*
10
+
11
+ long_description = """
12
+ Robust Arduino Serial is a simple and robust serial communication protocol.
13
+ It was designed to make two arduinos communicate, but can also be useful when you want a computer (e.g. a Raspberry Pi) to communicate with an Arduino.
14
+ https://medium.com/@araffin/simple-and-robust-computer-arduino-serial-communication-f91b95596788
15
+ """
3
16
4
17
setup (name = "robust_serial" ,
5
18
packages = [package for package in find_packages ()
11
24
tests_require = ['pytest' ],
12
25
author = "Antonin RAFFIN" ,
13
26
14
- url = "https://github.com/araffin/" ,
27
+ url = "https://github.com/araffin/arduino-robust-serial " ,
15
28
description = "Simple and Robust Serial Communication Protocol" ,
29
+ long_description = long_description ,
16
30
keywords = "serial hardware arduino RS232 communication protocol raspberry" ,
17
31
license = "MIT" ,
18
32
version = "0.1" ,
You can’t perform that action at this time.
0 commit comments