From dac4d564b6cdb655d722e42bd156ae83bd132f40 Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Thu, 2 Apr 2020 10:55:07 +0000 Subject: [PATCH] Configured project to be a python module --- setup.py | 32 ++++++++++++++++++++++++++++++++ tinytinypy/__init__.py | 0 2 files changed, 32 insertions(+) create mode 100755 setup.py create mode 100644 tinytinypy/__init__.py 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