Skip to content

Commit

Permalink
0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
BD103 committed May 18, 2021
1 parent 041b77f commit d58cdf1
Show file tree
Hide file tree
Showing 5 changed files with 115 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,3 +127,6 @@ dmypy.json

# Pyre type checker
.pyre/

# Project specific
main.py
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,20 @@
# Python-ReplAPI-It
Python package that mirrors the original Nodejs ReplAPI-It.

## Contributing

1. Fork the repo:

```shell
$ git clone https://github.com/ReplAPI-it/Python-ReplAPI-It.$ poetry install
```

2. Edit the project
3. Clean up:

```shell
$ isort .
$ flake8
```

4. Create a PR!
75 changes: 75 additions & 0 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[tool.poetry]
name = "replapi-it"
version = "0.0.1"
description = "ReplAPI-It for Python"
authors = ["BD103 <dont@stalk.me>", "JBTY27"]
license = "GPL-3.0-only"
readme = "README.md"
repository = "https://github.com/ReplAPI-it/Python-ReplAPI-It"

[tool.poetry.dependencies]
python = "^3.8"

[tool.poetry.dev-dependencies]
isort = "^5.8.0"
flake8 = "^3.9.2"

[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
Empty file added replapi_it/__init__.py
Empty file.

0 comments on commit d58cdf1

Please sign in to comment.