From 7f3644db68ef4a3765d307308f76534fecc013a0 Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Wed, 14 Dec 2016 01:05:09 +0000 Subject: [PATCH] Create a Python package Add setup.cfg and setup.py files sufficient to create a "mudpy" Python package suitable for `pip install` and uploading to PyPI. --- setup.cfg | 30 ++++++++++++++++++++++++++++++ setup.py | 3 +++ 2 files changed, 33 insertions(+) create mode 100644 setup.cfg create mode 100644 setup.py diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..c1e4624 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,30 @@ +[metadata] +name = mudpy +summary = The mudpy MUD server engine. +description-file = + README.rst +author = Jeremy Stanley +author-email = fungi@yuggoth.org +home-page = http://mudpy.org/ +classifier = + License :: OSI Approved :: ISC License (ISCL) + Operating System :: POSIX + Operating System :: Unix + Programming Language :: Python + Programming Language :: Python :: 3 + Programming Language :: Python :: 3.3 + Programming Language :: Python :: 3.4 + Programming Language :: Python :: 3.5 + Programming Language :: Python :: 3.6 + Programming Language :: Python :: 3 :: Only + Topic :: Communications + Topic :: Communications :: BBS + Topic :: Communications :: Chat + Topic :: Games/Entertainment + Topic :: Games/Entertainment :: Multi-User Dungeons (MUD) + Topic :: Games/Entertainment :: Role-Playing + Topic :: Internet + +[files] +packages = + mudpy diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..473cf21 --- /dev/null +++ b/setup.py @@ -0,0 +1,3 @@ +import setuptools + +setuptools.setup(setup_requires=['pbr>=2.0'], pbr=True) -- 2.11.0