diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..f4853a2 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,21 @@ +[metadata] +name = PyPipboy +version = 1.0.0 +author = matzman666 +author_email = matzman@matzman.net +description = An event-driven library implementing the Fallout 4 Companion App protocol +long_description = file: README.md +long_description_content_type = text/markdown +url = hhttps://github.com/matzman666/PyPipboy +project_urls = + Bug Tracker = https://github.com/matzman666/PyPipboy/issues +classifiers = + Programming Language :: Python :: 3 + License :: OSI Approved :: GNU General Public License (GPL) + Operating System :: OS Independent + +[options] +package_dir = + = src +packages = pypipboy +python_requires = >=3.0 \ No newline at end of file diff --git a/pypipboy/__init__.py b/src/pypipboy/__init__.py similarity index 100% rename from pypipboy/__init__.py rename to src/pypipboy/__init__.py diff --git a/pypipboy/dataencoder.py b/src/pypipboy/dataencoder.py similarity index 100% rename from pypipboy/dataencoder.py rename to src/pypipboy/dataencoder.py diff --git a/pypipboy/datamanager.py b/src/pypipboy/datamanager.py similarity index 100% rename from pypipboy/datamanager.py rename to src/pypipboy/datamanager.py diff --git a/pypipboy/dataparser.py b/src/pypipboy/dataparser.py similarity index 100% rename from pypipboy/dataparser.py rename to src/pypipboy/dataparser.py diff --git a/pypipboy/inventoryutils.py b/src/pypipboy/inventoryutils.py similarity index 100% rename from pypipboy/inventoryutils.py rename to src/pypipboy/inventoryutils.py diff --git a/pypipboy/network.py b/src/pypipboy/network.py similarity index 100% rename from pypipboy/network.py rename to src/pypipboy/network.py diff --git a/pypipboy/relayserver.py b/src/pypipboy/relayserver.py similarity index 100% rename from pypipboy/relayserver.py rename to src/pypipboy/relayserver.py diff --git a/pypipboy/types.py b/src/pypipboy/types.py similarity index 100% rename from pypipboy/types.py rename to src/pypipboy/types.py