diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..185a8a4 --- /dev/null +++ b/AUTHORS @@ -0,0 +1 @@ +Flask-SQLAlchemy-WebQuery is written by Gergely Polonkai. \ No newline at end of file diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..7a5c33e --- /dev/null +++ b/setup.cfg @@ -0,0 +1,15 @@ +[egg_info] +tag_build = .dev +tag_date = 1 + +[aliases] +release = egg_info -Db '' + +[tool:pytest] +norecursedirs = .* _* scripts {args} + +[bdist_wheel] +universal = 1 + +[metadata] +license_file = LICENSE.md \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..3bbf121 --- /dev/null +++ b/setup.py @@ -0,0 +1,34 @@ +import os +from setuptools import setup + +def read(fname): + return open(os.path.join(os.path.dirname(__file__), fname)).read() + + +setup(name='flask_sqlaclhemy_webquery', + version='0.1', + description='Query SQLAlchemy models through a web interface', + long_description=read('README.rst'), + url='https://gitlab.com/gergelypolonkai/flask-sqlalchemy-webquery', + author='Gergely Polonkai', + author_email='gergely@polonkai.eu', + licensce='BSD', + packages=['flask_sqlalchemy_webquery'], + install_requires=[ + 'flask-sqlalchemy', + 'flask-bootstrap', + ], + platforms='any', + include_package_data=True, + classifiers=[ + 'Environment :: Web Environment', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 3', + 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', + 'Topic :: Software Development :: Libraries :: Python Modules', + ], + zip_safe=False)