flask-semanticui/setup.py
2020-03-14 18:56:04 +01:00

16 lines
433 B
Python

from setuptools import setup
setup(
name='Flask-Semantic-UI',
version='1.0',
url='https://github.com/technikamateur/flask-semanticui',
author='Daniel aka technikamateur',
author_email='daniel@technikamateur.de',
description='An simple extension that includes Semantic UI in your project',
packages=['flask_semanticui'],
include_package_data=True,
install_requires=[
'Flask>=1.0'
]
)