diff options
author | neodarz <neodarz@neodarz.net> | 2020-04-11 16:27:34 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2020-04-11 16:27:34 +0200 |
commit | 274026d0fd21f5e96d7109e52f7d910a0b1d7225 (patch) | |
tree | 3ea0f525c0ce12e4357f4f42769032242141d0f4 | |
parent | 8a591f173cfccf072c31af88656a5ed12936fcfe (diff) | |
download | pyfunkwhale-274026d0fd21f5e96d7109e52f7d910a0b1d7225.tar.xz pyfunkwhale-274026d0fd21f5e96d7109e52f7d910a0b1d7225.zip |
Add setup file
-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'] +) |