From 274026d0fd21f5e96d7109e52f7d910a0b1d7225 Mon Sep 17 00:00:00 2001 From: neodarz Date: Sat, 11 Apr 2020 16:27:34 +0200 Subject: Add setup file --- setup.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..f4044d4 --- /dev/null +++ b/setup.py @@ -0,0 +1,18 @@ +from distutils.core import setup + +setup( + name="pyfunkwhale", + description="A simple funkwhale API client library", + version="0.0.1", + author="neodarz", + author_email="neodarz@neodarz.net", + url="https://git.neodarz.net/neodarz/pyfunkwhale.git", + license="GPLv3", + packages=["pyfunkwhale"], + classifiers=[ + 'Development Status :: 1 - Planning', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: GNU General Public License v3 or later ' + '(GPLv3+)', + 'Programming Language :: Python :: 3'] +) -- cgit v1.2.1