Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 25 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@
<img alt="" src="docs/_static/logo.svg" width="160px"/>

# Nextcore
<sub>A low level Discord API wrapper.</sub>

<sub>A low-level Discord API wrapper.</sub>

[![Pypi Badge](https://img.shields.io/pypi/v/nextcore?style=flat)](https://pypi.org/project/nextcore "We're on pypi!")
[![Python Badge](https://img.shields.io/pypi/pyversions/nextcore?style=flat)](https://pypi.org/project/nextcore "Supported python versions.")

</div>

### ✨ Features
Expand All @@ -29,6 +32,26 @@

<br>

<div align="center">

# Install

</div>

### 🎉 We're available on pypi!
```sh
# Pip
pip install novacore

# Poetry
poetry add nextcore
```
⚡ Speed ups are also available with the optional ``[speed]`` package.
```sh
pip install nextcore[speed]
```
<br>

<div align="center">

# Examples
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "nextcore"
version = "2.0.2"
version = "2.0.3"
description = "A low level Discord API wrapper"
authors = ["tag-epic"]
license = "MIT"
Expand Down Expand Up @@ -38,7 +38,7 @@ types-frozendict = "^2.0.6" # Could we extend the version requirement
typing-extensions = "^4.1.1" # Same as above
orjson = {version = "^3.6.8", optional = true}
types-orjson = {version = "^3.6.2", optional = true}
discord-typings = "^0.5.0"
discord-typings = "^0.9.0"

[tool.poetry.group.dev.dependencies]
Sphinx = "^5.0.0"
Expand Down
Loading