From 4a268d40f2af5ff07b3332f00dec9e6f5de0731e Mon Sep 17 00:00:00 2001 From: James Michael DuPont Date: Fri, 29 Jun 2018 18:29:50 -0400 Subject: [PATCH 1/2] setup --- setup.py | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000000..9d0978cd6f --- /dev/null +++ b/setup.py @@ -0,0 +1,40 @@ +# -*- 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", + 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) + From b37aae8d594e8c2029a8a026caa218f627d1daa6 Mon Sep 17 00:00:00 2001 From: James Michael DuPont Date: Fri, 29 Jun 2018 18:34:18 -0400 Subject: [PATCH 2/2] v1 --- openapi-specification-python.py | 1 + setup.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 openapi-specification-python.py 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 index 9d0978cd6f..284a77c706 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,8 @@ setup( name = 'openapi-specification-python', - version = ":versiontools:openapi-specification-python:VERSION", + #version = ":versiontools:openapi-specification-python:VERSION", + use_scm_version=True, packages = find_packages(), author = "James Michael DuPont ", maintainer = "James Michael DuPont ",