Skip to content

Commit 357f59d

Browse files
committed
v1.0.1
1 parent f303c41 commit 357f59d

File tree

3 files changed

+20
-7
lines changed

3 files changed

+20
-7
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
Compatible with Firmware Version 1.6.0 and python 3
44
> Your milage may vary with other versions, it was tested against on a device running 1.6.0
55
6+
## Installing
7+
`pip install ouster-os1`
68

79
## Quick start
810
```python

os1/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44

55
__author__ = "Ryan Siemens"
66
__email__ = "ryanjsiemens@gmail.com"
7-
__version__ = "0.1.0"
7+
__version__ = "1.0.1"
88
__license__ = "MIT"

setup.py

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,23 @@
1-
from distutils.core import setup
1+
import setuptools
22

33
import os1
44

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",
710
version=os1.__version__,
8-
description=os1.__doc__,
911
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+
],
1223
)

0 commit comments

Comments
 (0)