Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Configure setuptools.setup() with setup.cfg #39

Merged
merged 3 commits into from
Nov 18, 2018
Merged

Configure setuptools.setup() with setup.cfg #39

merged 3 commits into from
Nov 18, 2018

Commits on Nov 7, 2018

  1. Use setup.cfg for setup() options

    see
    https://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
    
    Also this commit expands some metadata, e.g. classifiers and
    project_urls.  Testing requirements are specified with "tests" extras.
    Other development requirements are tracked with "develop" extras.
    
    References to extras are supported in tests_require since setuptools
    v36.7.0, hence additional entry in setup_requires.
    skirpichev committed Nov 7, 2018
    Configuration menu
    Copy the full SHA
    1782a04 View commit details
    Browse the repository at this point in the history
  2. Use extras for Travis

    skirpichev committed Nov 7, 2018
    Configuration menu
    Copy the full SHA
    6416614 View commit details
    Browse the repository at this point in the history
  3. Fix RemovedInPytest4Warning for recent pytest

        With v3.10.0 I got:
            tests/test_matching.py:865
              /home/sk/src/matchpy/tests/test_matching.py:865:
            RemovedInPytest4Warning: MarkInfo objects are deprecated as they contain
            merged marks which are hard to deal with correctly.
            Please use node.get_closest_marker(name) or node.iter_markers(name).
            Docs: https://docs.pytest.org/en/latest/mark.html#updating-code
                names, values = obj.parametrize.args
    
        Also fix missing newline.
    skirpichev committed Nov 7, 2018
    Configuration menu
    Copy the full SHA
    1f73aa0 View commit details
    Browse the repository at this point in the history