1
This repository has been archived on 2022-08-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
alembic-data/setup.py
Kim Wittenburg 2f4c6d4908 Archive Project
# Conflicts:
#	.gitignore
2020-07-22 11:06:03 +02:00

48 lines
1.2 KiB
Python

"""
Alembic-Data
------------
Alembic-Data is an extension for alembic that allows the automatic creation of database content (in addition to schema).
It adds
"""
from setuptools import setup
setup(
name='Alembic-Data',
version='0.9',
url='https://gitlab.com/Codello/alembic-data/',
license='MIT',
author='Kim Wittenburg',
author_email='codello@wittenburg.kim',
description='Data Migrations for Alembic.',
long_description=__doc__,
packages=['alembic_data'],
package_data={"alembic_data": ["py.typed"]},
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'alembic'
],
extras_require={
'types': [
'sqlalchemy-stubs'
]
},
test_requirements=[
'pytest',
'pytest-pep8',
'pytest-cov',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Plugins',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)