Skip to content

Commit d58cdf1

Browse files
author
BD103
committed
0.0.1
1 parent 041b77f commit d58cdf1

File tree

5 files changed

+115
-0
lines changed

5 files changed

+115
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,6 @@ dmypy.json
127127

128128
# Pyre type checker
129129
.pyre/
130+
131+
# Project specific
132+
main.py

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,20 @@
11
# Python-ReplAPI-It
22
Python package that mirrors the original Nodejs ReplAPI-It.
3+
4+
## Contributing
5+
6+
1. Fork the repo:
7+
8+
```shell
9+
$ git clone https://github.com/ReplAPI-it/Python-ReplAPI-It.$ poetry install
10+
```
11+
12+
2. Edit the project
13+
3. Clean up:
14+
15+
```shell
16+
$ isort .
17+
$ flake8
18+
```
19+
20+
4. Create a PR!

poetry.lock

Lines changed: 75 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[tool.poetry]
2+
name = "replapi-it"
3+
version = "0.0.1"
4+
description = "ReplAPI-It for Python"
5+
authors = ["BD103 <dont@stalk.me>", "JBTY27"]
6+
license = "GPL-3.0-only"
7+
readme = "README.md"
8+
repository = "https://github.com/ReplAPI-it/Python-ReplAPI-It"
9+
10+
[tool.poetry.dependencies]
11+
python = "^3.8"
12+
13+
[tool.poetry.dev-dependencies]
14+
isort = "^5.8.0"
15+
flake8 = "^3.9.2"
16+
17+
[build-system]
18+
requires = ["poetry>=0.12"]
19+
build-backend = "poetry.masonry.api"

replapi_it/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)