Skip to content
This repository was archived by the owner on Dec 28, 2021. It is now read-only.

Commit 032d576

Browse files
Ethan ChrispEthan Chrisp
Ethan Chrisp
authored and
Ethan Chrisp
committed
Prep for v1.0.0 release
1 parent 85e4a7f commit 032d576

File tree

2 files changed

+10
-14
lines changed

2 files changed

+10
-14
lines changed

callofduty/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@
55
GitHub: https://github.com/EthanC/CallofDuty.py
66
"""
77

8-
__title__: str = "CallofDuty.py"
9-
__author__: str = "EthanC"
10-
__version__: str = "0.1.0"
11-
128
import logging
139

1410
from .auth import Login

pyproject.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,18 @@
11
[tool.poetry]
22
name = "callofduty.py"
3-
version = "0.1.0"
3+
version = "1.0.0"
44
description = "CallofDuty.py is an asynchronous, object-oriented Python wrapper for the Call of Duty API."
5-
authors = ["EthanC"]
65
license = "MIT"
6+
authors = ["EthanC <EthanC@github.com>"]
7+
maintainers = ["Josh <Tustin@github.com>"]
78
readme = "README.md"
89
repository = "https://github.com/EthanC/CallofDuty.py"
910
keywords = [
1011
"call-of-duty-py",
1112
"callofduty",
1213
"call-of-duty",
1314
"cod",
14-
"modern-warfare",
15-
"black-ops",
16-
"infinite-warfare",
17-
"wwii",
1815
"api",
19-
"wrapper",
20-
"async",
21-
"asynchronous",
22-
"object-oriented"
2316
]
2417
classifiers = [
2518
"Development Status :: 3 - Alpha",
@@ -36,6 +29,13 @@ classifiers = [
3629
"Topic :: Software Development :: Libraries :: Python Modules",
3730
"Typing :: Typed"
3831
]
32+
packages = [{ include = "callofduty" }]
33+
34+
[tool.poetry.urls]
35+
"Issue Tracker" = "https://github.com/EthanC/CallofDuty.py/issues"
36+
"Releases" = "https://github.com/EthanC/CallofDuty.py/releases"
37+
"Twitter" = "https://twitter.com/Mxtive"
38+
"Discord" = "https://discord.gg/callofduty"
3939

4040
[tool.poetry.dependencies]
4141
python = "^3.8"

0 commit comments

Comments
 (0)