|
| 1 | +# -*- coding: utf-8 -*- |
| 2 | + |
| 3 | +""" |
| 4 | +""" |
| 5 | + |
| 6 | +__status__ = "alpha" |
| 7 | +__version__ = "1.0.0a" |
| 8 | +__maintainer__ = ( u"James Michael DuPont <[email protected]>", ) |
| 9 | +__author__ = ( u"James Michael DuPont <[email protected]>", ) |
| 10 | + |
| 11 | +# Setup tools |
| 12 | +from setuptools import setup, find_packages |
| 13 | + |
| 14 | + |
| 15 | +setup( |
| 16 | + name = 'openapi-specification-python', |
| 17 | + version = ":versiontools:openapi-specification-python:VERSION", |
| 18 | + packages = find_packages(), |
| 19 | + author = "James Michael DuPont <[email protected]>", |
| 20 | + maintainer = "James Michael DuPont <[email protected]>", |
| 21 | + description = "JSON Schema Toolkit", |
| 22 | + keywords = ['json', 'schema', 'validation', 'django', 'sql', 'postgresql', ], |
| 23 | + license = 'Apache', |
| 24 | + url = 'https://www.openapis.org/', |
| 25 | + download_url = "https://github.com/h4ck3rm1k3/OpenAPI-Specification/archive/master.zip", |
| 26 | + test_suite = 'openapi-specification-python.tests.test_suite', |
| 27 | + classifiers = [ |
| 28 | + "Development Status :: 3 - Alpha", |
| 29 | + "Intended Audience :: Developers", |
| 30 | + "License :: OSI Approved :: Apache License", |
| 31 | + "Operating System :: OS Independent", |
| 32 | + "Programming Language :: Python :: 3.7", |
| 33 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 34 | + ], |
| 35 | + install_requires = [ |
| 36 | + ], |
| 37 | + setup_requires = [ 'versiontools >= 1.3.1', ], |
| 38 | + tests_require = [ 'unittest2 >= 0.5.1' ], |
| 39 | + zip_safe = True) |
| 40 | + |
0 commit comments