Last active
June 14, 2020 11:18
-
-
Save abdounasser202/8f610780412ac02527fc9e337b728150 to your computer and use it in GitHub Desktop.
Code : Flask-Simple setup.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Flask-Simple | |
------------- | |
Just to test how flask's extensions work! | |
""" | |
from setuptools import setup | |
setup( | |
name='Flask-Simple', | |
version='1.0', | |
url='https://nasser.cm', | |
license='BSD', | |
author='Abdou Nasser', | |
author_email='[email protected]', | |
description="Just to test how flask's extensions work!", | |
long_description="Just to test how flask's extensions work!", | |
py_modules=['flask_simple'], | |
zip_safe=False, | |
include_package_data=True, | |
platforms='any', | |
install_requires=[ | |
'Flask' | |
], | |
classifiers=[ | |
'Environment :: Web Environment', | |
'Intended Audience :: Developers', | |
'License :: OSI Approved :: BSD License', | |
'Operating System :: OS Independent', | |
'Programming Language :: Python', | |
'Topic :: Internet :: WWW/HTTP :: Dynamic Content', | |
'Topic :: Software Development :: Libraries :: Python Modules' | |
] | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment