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.
This commit is contained in:
Luke Murphy 2018-12-14 23:23:18 +00:00
parent 0a9205c3b1
commit 4ee38230b5
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC

21
setup.py Normal file
View File

@ -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',
]
)