Varia library working group XPPL. https://gitea.xpub.nl/XPUB/XPPL
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

21 lines
542 B

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