-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
32 lines (28 loc) · 946 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "spectrum.py"
dynamic = ["version"]
authors = [
{ name="henry232323" },
]
description = "spectrum.py is a [discord.py](https://github.com/Rapptz/discord.py) style proof-of-concept library for making chatbots for Star Citizen's [Spectrum](https://robertsspaceindustries.com/spectrum/community/SC) chat client."
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.10"
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
]
dependencies = ['aiohttp']
[options.extras_require]
community-hub = [
'aiographql-client'
]
[tool.setuptools.dynamic]
version = {attr = "spectrum.__version__"}
[project.urls]
"Homepage" = "http://github.com/henry232323/spectrum.py"
"Bug Tracker" = "http://github.com/henry232323/spectrum.py/issues"