Skip to content

Commit

Permalink
Add a setup.py to generate the script
Browse files Browse the repository at this point in the history
  • Loading branch information
rodfersou committed Nov 11, 2020
1 parent 45a9e08 commit 535180e
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
File renamed without changes.
24 changes: 24 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
from setuptools import setup, find_packages

requires = [
'PyYAML==5.1'
]

setup(
name='swagger_to_uml',
version='0.1',
description='swagger_to_uml',
classifiers=[
"Programming Language :: Python"
],
author='',
author_email='',
url='',
keywords='swagger uml',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=requires,
scripts=['bin/swagger_to_uml']
)

0 comments on commit 535180e

Please sign in to comment.