Skip to content

Commit

Permalink
Create setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Dicklesworthstone authored Nov 5, 2023
1 parent e78ba13 commit ee167f8
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
from setuptools import setup

setup(
name='sqlalchemy_data_model_visualizer',
version='0.1.0', # Update the version number as needed
description='A tool to visualize SQLAlchemy data models with Graphviz.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Jeffrey Emanuel',
author_email='[email protected]',
url='https://github.com/Dicklesworthstone/sqlalchemy_data_model_visualizer',
py_modules=['sqlalchemy_data_model_visualizer'], # Single file module
install_requires=open('requirements.txt').read().splitlines(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
license='MIT',
keywords='sqlalchemy visualization graphviz data-model',
include_package_data=True,
)

0 comments on commit ee167f8

Please sign in to comment.