File tree Expand file tree Collapse file tree 3 files changed +20
-7
lines changed Expand file tree Collapse file tree 3 files changed +20
-7
lines changed Original file line number Diff line number Diff line change 3
3
Compatible with Firmware Version 1.6.0 and python 3
4
4
> Your milage may vary with other versions, it was tested against on a device running 1.6.0
5
5
6
+ ## Installing
7
+ ` pip install ouster-os1 `
6
8
7
9
## Quick start
8
10
``` python
Original file line number Diff line number Diff line change 4
4
5
5
__author__ = "Ryan Siemens"
6
6
__email__ = "ryanjsiemens@gmail.com"
7
- __version__ = "0. 1.0"
7
+ __version__ = "1.0.1 "
8
8
__license__ = "MIT"
Original file line number Diff line number Diff line change 1
- from distutils . core import setup
1
+ import setuptools
2
2
3
3
import os1
4
4
5
- setup (
6
- name = 'ouster-os1' ,
5
+ with open ("README.md" ) as f :
6
+ long_desc = f .read ()
7
+
8
+ setuptools .setup (
9
+ name = "ouster-os1" ,
7
10
version = os1 .__version__ ,
8
- description = os1 .__doc__ ,
9
11
author = os1 .__author__ ,
10
- url = 'https://github.com/rsiemens/ouster-python/' ,
11
- packages = ['os1' ],
12
+ author_email = os1 .__email__ ,
13
+ description = os1 .__doc__ ,
14
+ long_description = long_desc ,
15
+ long_description_content_type = "text/markdown" ,
16
+ url = "https://github.com/rsiemens/ouster-python/" ,
17
+ packages = ["os1" ],
18
+ classifiers = [
19
+ "Programming Language :: Python :: 3" ,
20
+ "License :: OSI Approved :: MIT License" ,
21
+ "Operating System :: OS Independent" ,
22
+ ],
12
23
)
You can’t perform that action at this time.
0 commit comments