mirror of
https://github.com/vale981/flask-semanticui
synced 2025-03-05 09:11:39 -05:00
16 lines
433 B
Python
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'
|
|
]
|
|
)
|