diff options
-rw-r--r-- | setup.py | 18 |
1 files changed, 18 insertions, 0 deletions
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'] +) |