50 lines
1.5 KiB
Python
50 lines
1.5 KiB
Python
|
from setuptools import setup
|
||
|
|
||
|
|
||
|
setup(
|
||
|
name='StickyNotes',
|
||
|
version='0.2',
|
||
|
author='Raoul Snyman',
|
||
|
description='A simple pastebin',
|
||
|
url='https://bin.snyman.info',
|
||
|
license='GPLv3+',
|
||
|
packages=['stickynotes'],
|
||
|
include_package_data=True,
|
||
|
platforms='any',
|
||
|
python_requires='>=3.5',
|
||
|
install_requires=[
|
||
|
'Flask',
|
||
|
'Flask-SQLAlchemy',
|
||
|
'Pygments',
|
||
|
'requests',
|
||
|
'short_url'
|
||
|
],
|
||
|
extras_require={
|
||
|
'dev': [
|
||
|
'pytest>=3',
|
||
|
'pytest-cov',
|
||
|
],
|
||
|
},
|
||
|
classifiers=[
|
||
|
'Development Status :: 2 - Pre-Alpha',
|
||
|
'Environment :: Web Environment',
|
||
|
'Framework :: Flask',
|
||
|
'Intended Audience :: Other Audience',
|
||
|
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
|
||
|
'Natural Language :: English',
|
||
|
'Operating System :: OS Independent',
|
||
|
'Programming Language :: Python',
|
||
|
'Programming Language :: Python :: 3',
|
||
|
'Programming Language :: Python :: 3.5',
|
||
|
'Programming Language :: Python :: 3.6',
|
||
|
'Programming Language :: Python :: 3.7',
|
||
|
'Programming Language :: Python :: 3.8',
|
||
|
'Programming Language :: Python :: 3 :: Only',
|
||
|
'Topic :: Internet :: WWW/HTTP',
|
||
|
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
|
||
|
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System',
|
||
|
'Topic :: Internet :: WWW/HTTP :: WSGI',
|
||
|
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
|
||
|
],
|
||
|
)
|