Skip to content

Commit eea6a3e

Browse files
authored
Update setup.py
1 parent f2e977a commit eea6a3e

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

setup.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name='hydra_openapi_parser',
5+
version='0.1',
6+
packages=find_packages(),
7+
license='MIT',
8+
description='A Parser from OpenAPI to Hydra specs',
9+
long_description=open('README.md').read(),
10+
long_description_content_type="text/markdown",
11+
url='https://github.com/HTTP-APIs/hydra_openapi_parser',
12+
zip_safe=False
13+
)

0 commit comments

Comments
 (0)