Skip to content

Commit

Permalink
upload pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
GreyElaina committed Dec 4, 2021
1 parent cebb047 commit abe50a9
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,4 @@ dmypy.json

# Pyre type checker
.pyre/
pyproject.toml
#pyproject.toml
55 changes: 55 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
[tool.poetry]
name = "avilla-core"
version = "0.0.12"
description = ""
authors = ["GreyElaina <[email protected]>"]
license = "MiT"
packages = [
{ include = "avilla/core" },
{ include = "avilla/core/py.typed" },
]
readme = 'README.md'

repository = "https://github.com/GraiaProject/AvillaCore"
homepage = "https://github.com/GraiaProject/AvillaCore"


[tool.poetry.dependencies]
python = "^3.8"
graia-broadcast = "^0.14.1"
pydantic = "^1.8.2"
yarl = "^1.6.3"
aiofiles = "^0.7.0"
typing-extensions = "^3.10.0"

# Network Support
aiohttp = "^3.7.4"

# Tools: Template
regex = { version = "^2021.8.3", optional = true }
immutables = "^0.16"
loguru = "^0.5.3"
rich = "^10.13.0"
prompt-toolkit = "^3.0.23"

[tool.poetry.dev-dependencies]
black = "^21.6b0"
isort = "^5.9.3"
pylint = "^2.9.6"
flake8 = "^3.9.2"
mr-cli = "^0.0.3"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

[tool.black]
line-length = 110
target-version = ['py38']
include = '\.pyi?$'

[tool.isort]
profile = "black"

[tool.poetry.extras]
template = ['regex']

0 comments on commit abe50a9

Please sign in to comment.