Skip to content

Commit c6e341e

Browse files
committed
Add files
1 parent a4495a4 commit c6e341e

File tree

3 files changed

+41
-18
lines changed

3 files changed

+41
-18
lines changed

.github/CONTRIBUTING.md

Lines changed: 35 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,40 @@ The following is a set of guidelines for contributing to Tello Vision. These are
66

77
## Table of Contents
88

9-
- [Code of Conduct](#code-of-conduct)
10-
- [How Can I Contribute?](#how-can-i-contribute)
11-
- [Reporting Bugs](#reporting-bugs)
12-
- [Suggesting Enhancements](#suggesting-enhancements)
13-
- [Your First Code Contribution](#your-first-code-contribution)
14-
- [Pull Requests](#pull-requests)
15-
- [Style Guides](#style-guides)
16-
- [Git Commit Messages](#git-commit-messages)
17-
- [Python Style Guide](#python-style-guide)
18-
- [Documentation Style Guide](#documentation-style-guide)
19-
- [Development Setup](#development-setup)
20-
- [Project Structure](#project-structure)
21-
- [Testing](#testing)
22-
- [Additional Notes](#additional-notes)
9+
- [Contributing to Tello Vision](#contributing-to-tello-vision)
10+
- [Table of Contents](#table-of-contents)
11+
- [Code of Conduct](#code-of-conduct)
12+
- [How Can I Contribute?](#how-can-i-contribute)
13+
- [Reporting Bugs](#reporting-bugs)
14+
- [Suggesting Enhancements](#suggesting-enhancements)
15+
- [Your First Code Contribution](#your-first-code-contribution)
16+
- [Pull Requests](#pull-requests)
17+
- [Style Guides](#style-guides)
18+
- [Git Commit Messages](#git-commit-messages)
19+
- [Python Style Guide](#python-style-guide)
20+
- [Documentation Style Guide](#documentation-style-guide)
21+
- [Development Setup](#development-setup)
22+
- [1. Fork and Clone](#1-fork-and-clone)
23+
- [2. Create Virtual Environment](#2-create-virtual-environment)
24+
- [3. Install Development Dependencies](#3-install-development-dependencies)
25+
- [4. Create a Branch](#4-create-a-branch)
26+
- [5. Make Changes](#5-make-changes)
27+
- [6. Format and Lint](#6-format-and-lint)
28+
- [7. Test Your Changes](#7-test-your-changes)
29+
- [8. Commit and Push](#8-commit-and-push)
30+
- [9. Create Pull Request](#9-create-pull-request)
31+
- [Project Structure](#project-structure)
32+
- [Testing](#testing)
33+
- [Adding a New Detector Backend](#adding-a-new-detector-backend)
34+
- [1. Create Detector Class](#1-create-detector-class)
35+
- [2. Register in Factory](#2-register-in-factory)
36+
- [3. Add Configuration](#3-add-configuration)
37+
- [4. Test It](#4-test-it)
38+
- [5. Update Documentation](#5-update-documentation)
39+
- [Additional Notes](#additional-notes)
40+
- [Issue and Pull Request Labels](#issue-and-pull-request-labels)
41+
- [Recognition](#recognition)
42+
- [Questions?](#questions)
2343

2444
## Code of Conduct
2545

@@ -251,7 +271,7 @@ mypy tello_vision/
251271
### 1. Fork and Clone
252272

253273
```bash
254-
git clone https://github.com/YOUR-USERNAME/tello-vision.git
274+
git clone https://github.com/dronefreak/dji-tello-object-detection-segmentation.git
255275
cd tello-vision
256276
```
257277

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ dev = [
4848
]
4949

5050
[project.urls]
51-
Homepage = "https://github.com/yourusername/tello-vision"
52-
Repository = "https://github.com/yourusername/tello-vision"
53-
Issues = "https://github.com/yourusername/tello-vision/issues"
51+
Homepage = "https://github.com/dronefreak/dji-tello-object-detection-segmentation.git"
52+
Repository = "https://github.com/dronefreak/dji-tello-object-detection-segmentation.git"
53+
Issues = "https://github.com/dronefreak/dji-tello-object-detection-segmentation.git/issues"
5454

5555
[tool.black]
5656
line-length = 88

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from setuptools import find_packages, setup
2+
3+
setup(name="dji-tello-object-detection-segmentation", version="1.0", packages=find_packages())

0 commit comments

Comments
 (0)