Skip to content

Commit 28d6f98

Browse files
committed
repo init
0 parents  commit 28d6f98

File tree

6 files changed

+75
-0
lines changed

6 files changed

+75
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
build/
2+
dist/
3+
*.egg-info/

LICENSE

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Part of the RoboticsWare project - https://roboticsware.uz
2+
Copyright (C) 2022 RoboticsWare ([email protected])
3+
4+
This library is free software; you can redistribute it and/or
5+
modify it under the terms of the GNU Lesser General Public
6+
License as published by the Free Software Foundation; either
7+
version 2.1 of the License, or (at your option) any later version.
8+
9+
This library is distributed in the hope that it will be useful,
10+
but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12+
Lesser General Public License for more details.
13+
14+
You should have received a copy of the GNU Lesser General
15+
Public License along with this library; if not, write to the
16+
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
17+
Boston, MA 02111-1307 USA

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# neobot
2+
3+
## Overview
4+
Part of the RoboticsWare project - https://roboticsware.uz
5+
Copyright (C) 2022 RoboticsWare ([email protected])
6+
7+
## Installation
8+
``pip install -U neobot`` should work for most users.

neobot/__init__.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Part of the RoboticsWare project - https://roboticsware.uz
2+
# Copyright (C) 2022 RoboticsWare ([email protected])
3+
#
4+
# This library is free software; you can redistribute it and/or
5+
# modify it under the terms of the GNU Lesser General Public
6+
# License as published by the Free Software Foundation; either
7+
# version 2.1 of the License, or (at your option) any later version.
8+
#
9+
# This library is distributed in the hope that it will be useful,
10+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12+
# Lesser General Public License for more details.
13+
#
14+
# You should have received a copy of the GNU Lesser General
15+
# Public License along with this library; if not, write to the
16+
# Free Software Foundation, Inc., 59 Temple Place, Suite 330,
17+
# Boston, MA 02111-1307 USA
18+
19+
__version__ = "0.1.0"
20+
21+
__all__ = ["NEO SoCo"]

setup.cfg

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[metadata]
2+
description-file = README.md
3+
4+
[egg_info]
5+
tag_build =
6+
tag_date = 0
7+

setup.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name="neobot",
5+
version="0.1.0",
6+
author="RoboticsWare",
7+
author_email="[email protected]",
8+
description="Python Package for NEO SoCo",
9+
url="https://github.com/roboticsware/pylib_neobot.git",
10+
long_description=open("README.md").read(),
11+
long_description_content_type="text/markdown",
12+
install_requires=["pyserial", "websocket-client"],
13+
packages=find_packages(exclude=["examples", "tests"]),
14+
python_requires=">=3",
15+
zip_safe=False,
16+
classifiers=[
17+
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)"
18+
]
19+
)

0 commit comments

Comments
 (0)