flask-semanticui/setup.py

17 lines
433 B
Python
Raw Permalink Normal View History

2020-03-14 16:17:01 +01:00
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=[
2020-03-14 18:56:04 +01:00
'Flask>=1.0'
2020-03-14 16:17:01 +01:00
]
)