diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..996bf3f --- /dev/null +++ b/setup.py @@ -0,0 +1,32 @@ +#!/usr/bin/env python3 + +import setuptools + +with open("README.md", 'r') as fh: + long_description = fh.read() + +setuptools.setup( + name="tinytinypy", + version='0.1', + author="Felix Stupp", + author_email="felix.stupp@outlook.com", + description="Utility package for using API of Tiny Tiny RSS", + long_description=long_description, + url="https://github.com/Zocker1999NET/tinytinypy", + python_requires='>=3.4', + scripts=[ + "scripts/tinytinypy", + ], + packages=[ + "tinytinypy", + ], + classifiers = [ + "Development Status :: 3 - Alpha", + "Environment :: Console", + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + "Programming Language :: Python :: 3 :: Only", + "Topic :: Utilities", + ], +) diff --git a/tinytinypy/__init__.py b/tinytinypy/__init__.py new file mode 100644 index 0000000..e69de29