diff --git a/openapi-specification-python.py b/openapi-specification-python.py new file mode 100644 index 0000000000..792d600548 --- /dev/null +++ b/openapi-specification-python.py @@ -0,0 +1 @@ +# diff --git a/setup.py b/setup.py new file mode 100644 index 0000000000..284a77c706 --- /dev/null +++ b/setup.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- + +""" +""" + +__status__ = "alpha" +__version__ = "1.0.0a" +__maintainer__ = (u"James Michael DuPont ", ) +__author__ = (u"James Michael DuPont ", ) + +# Setup tools +from setuptools import setup, find_packages + + +setup( + name = 'openapi-specification-python', + #version = ":versiontools:openapi-specification-python:VERSION", + use_scm_version=True, + packages = find_packages(), + author = "James Michael DuPont ", + maintainer = "James Michael DuPont ", + description = "JSON Schema Toolkit", + keywords = ['json', 'schema', 'validation', 'django', 'sql', 'postgresql', ], + license = 'Apache', + url = 'https://www.openapis.org/', + download_url = "https://github.com/h4ck3rm1k3/OpenAPI-Specification/archive/master.zip", + test_suite = 'openapi-specification-python.tests.test_suite', + classifiers = [ + "Development Status :: 3 - Alpha", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache License", + "Operating System :: OS Independent", + "Programming Language :: Python :: 3.7", + "Topic :: Software Development :: Libraries :: Python Modules", + ], + install_requires = [ + ], + setup_requires = [ 'versiontools >= 1.3.1', ], + tests_require = [ 'unittest2 >= 0.5.1' ], + zip_safe = True) +