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 99
1010# Python egg metadata, regenerated from source files by setuptools.
1111* .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
4242python -m examples.arduino_serial
4343```
4444
45- ### Bluetooth Example
45+ ### Bluetooth Example with Two Computers
4646
47- Dependency :
47+ Dependencies :
4848```
4949sudo apt-get install libbluetooth-dev bluez
5050pip 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 11from setuptools import setup , find_packages
22
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+ """
316
417setup (name = "robust_serial" ,
518 packages = [package for package in find_packages ()
1124 tests_require = ['pytest' ],
1225 author = "Antonin RAFFIN" ,
1326 author_email = "antonin.raffin@ensta.org" ,
14- url = "https://github.com/araffin/" ,
27+ url = "https://github.com/araffin/arduino-robust-serial " ,
1528 description = "Simple and Robust Serial Communication Protocol" ,
29+ long_description = long_description ,
1630 keywords = "serial hardware arduino RS232 communication protocol raspberry" ,
1731 license = "MIT" ,
1832 version = "0.1" ,
You can’t perform that action at this time.
0 commit comments