forked from EthanC/CallofDuty.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (46 loc) · 1.44 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[tool.poetry]
name = "callofduty.py"
version = "1.2.2"
description = "CallofDuty.py is an asynchronous, object-oriented Python wrapper for the Call of Duty API."
license = "MIT"
authors = ["EthanC <[email protected]>"]
readme = "README.md"
repository = "https://github.com/EthanC/CallofDuty.py"
keywords = [
"call-of-duty-py",
"callofduty",
"call-of-duty",
"cod",
"api",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Topic :: Games/Entertainment",
"Topic :: Games/Entertainment :: First Person Shooters",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"
]
packages = [{ include = "callofduty" }]
[tool.poetry.urls]
"Discord" = "https://discord.gg/CallofDuty"
"Twitter" = "https://twitter.com/Mxtive"
"Changelog" = "https://github.com/EthanC/CallofDuty.py/releases"
"Issue Tracker" = "https://github.com/EthanC/CallofDuty.py/issues"
[tool.poetry.dependencies]
python = "^3.9"
httpx = "^0.16.1"
[tool.poetry.dev-dependencies]
pylint = "^2.6.0"
black = "^20.8b1"
python-dotenv = "^0.15.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"