diff --git a/callofduty/__init__.py b/callofduty/__init__.py index 49822b0..078b5a8 100644 --- a/callofduty/__init__.py +++ b/callofduty/__init__.py @@ -5,10 +5,6 @@ GitHub: https://github.com/EthanC/CallofDuty.py """ -__title__: str = "CallofDuty.py" -__author__: str = "EthanC" -__version__: str = "0.1.0" - import logging from .auth import Login diff --git a/pyproject.toml b/pyproject.toml index 592bbb5..154b85e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,10 @@ [tool.poetry] name = "callofduty.py" -version = "0.1.0" +version = "1.0.0" description = "CallofDuty.py is an asynchronous, object-oriented Python wrapper for the Call of Duty API." -authors = ["EthanC"] license = "MIT" +authors = ["EthanC "] +maintainers = ["Josh "] readme = "README.md" repository = "https://github.com/EthanC/CallofDuty.py" keywords = [ @@ -11,15 +12,7 @@ keywords = [ "callofduty", "call-of-duty", "cod", - "modern-warfare", - "black-ops", - "infinite-warfare", - "wwii", "api", - "wrapper", - "async", - "asynchronous", - "object-oriented" ] classifiers = [ "Development Status :: 3 - Alpha", @@ -36,6 +29,13 @@ classifiers = [ "Topic :: Software Development :: Libraries :: Python Modules", "Typing :: Typed" ] +packages = [{ include = "callofduty" }] + +[tool.poetry.urls] +"Issue Tracker" = "https://github.com/EthanC/CallofDuty.py/issues" +"Releases" = "https://github.com/EthanC/CallofDuty.py/releases" +"Twitter" = "https://twitter.com/Mxtive" +"Discord" = "https://discord.gg/callofduty" [tool.poetry.dependencies] python = "^3.8"