Merge pull request #161 from p1c2u/feature/setup-config-refactor

Setup config file
This commit is contained in:
A 2019-10-16 20:50:20 +01:00 committed by GitHub
commit f12b6d8445
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 103 additions and 54 deletions

34
Makefile Normal file
View file

@ -0,0 +1,34 @@
.EXPORT_ALL_VARIABLES:
PROJECT_NAME=openapi-core
PACKAGE_NAME=$(subst -,_,${PROJECT_NAME})
VERSION=`git describe --abbrev=0`
PYTHONDONTWRITEBYTECODE=1
params:
@echo "Project name: ${PROJECT_NAME}"
@echo "Package name: ${PACKAGE_NAME}"
@echo "Version: ${VERSION}"
dist-build:
@python setup.py bdist_wheel
dist-cleanup:
@rm -rf build dist ${PACKAGE_NAME}.egg-info
dist-upload:
@twine upload dist/*.whl
test-python:
@python setup.py test
test-cache-cleanup:
@rm -rf .pytest_cache
reports-cleanup:
@rm -rf reports
test-cleanup: test-cache-cleanup reports-cleanup
cleanup: dist-cleanup test-cleanup

49
setup.cfg Normal file
View file

@ -0,0 +1,49 @@
[metadata]
name = openapi-core
long_description = file: README.rst
long-description-content-type = text/x-rst; charset=UTF-8
keywords = openapi, swagger, schema
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Topic :: Software Development :: Libraries :: Python Modules
Operating System :: OS Independent
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Software Development :: Libraries
[options]
include_package_data = True
packages = find:
zip_safe = False
test_suite = tests
python_requires = >= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*, != 3.4.*
setup_requires =
setuptools
install_requires =
openapi-spec-validator
six
lazy-object-proxy
strict_rfc3339
isodate
attrs
backports.functools-lru-cache; python_version<"3.0"
backports.functools-partialmethod; python_version<"3.0"
tests_require =
mock; python_version<"3.0"
pytest
pytest-flake8
pytest-cov
flask
[options.packages.find]
exclude =
tests
[options.extras_require]
flask = werkzeug
[tool:pytest]
addopts = -sv --flake8 --junitxml reports/junit.xml --cov openapi_core --cov-report term-missing --cov-report xml:reports/coverage.xml tests

View file

@ -1,16 +1,16 @@
#!/usr/bin/env python
"""OpenAPI core setup module""" """OpenAPI core setup module"""
import os import os
import re import re
import sys import sys
try:
from setuptools import setup, find_packages from setuptools import setup
from setuptools.command.test import test as TestCommand except ImportError:
from ez_setup import use_setuptools
use_setuptools()
def read_requirements(filename): from setuptools import setup
"""Open a requirements file and return list of its lines.""" finally:
contents = read_file(filename).strip('\n') from setuptools.command.test import test as TestCommand
return contents.split('\n') if contents else []
def read_file(filename): def read_file(filename):
@ -25,32 +25,17 @@ def get_metadata(init_file):
return dict(re.findall("__([a-z]+)__ = '([^']+)'", init_file)) return dict(re.findall("__([a-z]+)__ = '([^']+)'", init_file))
def install_requires():
py27 = '_2.7' if sys.version_info < (3,) else ''
return read_requirements('requirements{}.txt'.format(py27))
class PyTest(TestCommand): class PyTest(TestCommand):
"""Command to run unit tests after in-place build.""" """Command to run unit tests after in-place build."""
def finalize_options(self): def finalize_options(self):
TestCommand.finalize_options(self) TestCommand.finalize_options(self)
self.test_args = [ self.pytest_args = []
'-sv',
'--flake8',
'--junitxml', 'reports/junit.xml',
'--cov', 'openapi_core',
'--cov-report', 'term-missing',
'--cov-report', 'xml:reports/coverage.xml',
'tests',
]
self.test_suite = True
def run_tests(self): def run_tests(self):
# Importing here, `cause outside the eggs aren't loaded. # Importing here, `cause outside the eggs aren't loaded.
import pytest import pytest
errno = pytest.main(self.test_args) errno = pytest.main(self.pytest_args)
sys.exit(errno) sys.exit(errno)
@ -59,31 +44,12 @@ init_py = read_file(init_path)
metadata = get_metadata(init_py) metadata = get_metadata(init_py)
setup( if __name__ == '__main__':
name='openapi-core', setup(
version=metadata['version'], version=metadata['version'],
author=metadata['author'], author=metadata['author'],
author_email=metadata['email'], author_email=metadata['email'],
url=metadata['url'], url=metadata['url'],
long_description=read_file("README.rst"), cmdclass={'test': PyTest},
packages=find_packages(include=('openapi_core*',)), setup_cfg=True,
include_package_data=True, )
classifiers=[
"Development Status :: 4 - Beta",
'Intended Audience :: Developers',
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries',
],
install_requires=install_requires(),
tests_require=read_requirements('requirements_dev.txt'),
extras_require={
'flask': ["werkzeug"],
},
cmdclass={'test': PyTest},
zip_safe=False,
)