Prepare package for distribution (adding setuptools stuff)

This commit is contained in:
Gergely Polonkai 2017-06-22 09:08:54 +02:00
parent d2680d9afd
commit 2fb4b96dcc
3 changed files with 50 additions and 0 deletions

1
AUTHORS Normal file
View File

@ -0,0 +1 @@
Flask-SQLAlchemy-WebQuery is written by Gergely Polonkai.

15
setup.cfg Normal file
View File

@ -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

34
setup.py Normal file
View File

@ -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)