From 4ee38230b5864f5fe32c2884b20f99d9afb5e158 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Fri, 14 Dec 2018 23:23:18 +0000 Subject: [PATCH] Add a dummy setuptools file. Will probably just use this for versioning which can match up in the CHANGELOG.md to help people see which version to install. No releases are tagged so far though. --- setup.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..99af33b --- /dev/null +++ b/setup.py @@ -0,0 +1,21 @@ +"""Package information.""" + +from setuptools import find_packages, setup + +with open('README.md', 'r') as handle: + long_description = handle.read() + +setup( + name='xppl', + version='0.0.2', + description='An experimental library.', + long_description=long_description, + long_description_content_type='text/markdown', + packages=find_packages(exclude=['tests']), + platforms='any', + classifiers=[ + 'Environment :: Web Environment', + 'Framework :: Flask', + 'Programming Language :: Python :: 3', + ] +)