-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (32 loc) · 1.08 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[build-system]
requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"
[project]
name = "wiring"
description = "package for building bots that run on multiple platforms, like discord and telegram"
requires-python = ">=3.8"
version = "0.1.0"
dynamic = ["dependencies"]
readme = { file = "./README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
]
[project.urls]
"source code and issues" = "https://github.com/crucials/wiring"
[tool.hatch.build]
packages = ["wiring"]
[project.optional-dependencies]
discord = ["discord.py"]
telegram = ["python-telegram-bot"]
twitch = ["twitchio"]
development = ["pytest", "pytest-asyncio", "pylint", "flake8"]