From 27048a876623e4c1acc4f8d255564e6690a57742 Mon Sep 17 00:00:00 2001 From: Sayan Chowdhury Date: Apr 16 2019 15:12:12 +0000 Subject: Get closer to release 0.0.1 Signed-off-by: Sayan Chowdhury --- diff --git a/.gitignore b/.gitignore index 531e3b4..c8db487 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ fedora-messaging.toml +dist diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..c1a7121 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include LICENSE +include README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..afffb12 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +## Joystick + + diff --git a/joystick/consumers/fedora_messaging_consumer.py b/joystick/consumers/fedora_messaging_consumer.py index 3468f15..2b3d03d 100644 --- a/joystick/consumers/fedora_messaging_consumer.py +++ b/joystick/consumers/fedora_messaging_consumer.py @@ -131,6 +131,3 @@ class JoyStickController(object): ]) return output, error, retcode - - def _publish_messages(self): - raise NotImplementedError diff --git a/setup.py b/setup.py index 7966227..723d39a 100644 --- a/setup.py +++ b/setup.py @@ -9,4 +9,13 @@ setup( author_email="sayan.chowdhury2012@gmail.com", url="https://pagure.io/joystick", packages=find_packages(), + classifiers={ + 'Development Status :: 2 - Pre-Alpha', + 'Environment :: Console', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: GNU Affero General Public License v3', + 'Programming Language :: Python :: 3', + 'Topic :: System :: Systems Administration', + 'Topic :: Software Development :: Libraries :: Python Modules', + } )