diff --git a/.travis.yml b/.travis.yml index b2c6960ad..d1961b6f4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,7 @@ jobs: - name: "Tests (Python 3.8)" python: 3.8 env: TOXENV=py38 - - name: "Docs" + - name: "Documentation" python: 3.6 env: TOXENV=docs - name: "Benchmarks" diff --git a/setup.cfg b/setup.cfg index 949cde3d5..50864c491 100644 --- a/setup.cfg +++ b/setup.cfg @@ -9,9 +9,10 @@ description = Probabilistic Numerics in Python. url = https://github.com/probabilistic-numerics/probnum author = ProbNum Authors author-email = -license = mit +license = MIT long-description = file: README.md long-description-content-type = text/markdown +keywords = probabilistic-numerics # Change if running only on Windows, Mac or Linux (comma-separated) platforms = any # Add here all kinds of additional classifiers as defined under @@ -28,7 +29,7 @@ packages = find: include_package_data = True package_dir = =src -# Add here dependencies of your project (semicolon/line-separated), e.g. +# Dependencies of the project (semicolon/line-separated): install_requires = numpy scipy>=1.4 @@ -37,7 +38,7 @@ install_requires = # The usage of test_requires is discouraged, see `Dependency Management` docs # tests_require = pytest; pytest-cov # Require a specific Python version, e.g. Python 2.7 or >= 3.4 -python_requires = >=3.5 +python_requires = >=3.6 [options.packages.find] where = src @@ -72,7 +73,6 @@ extras = True # e.g. --cov-report html (or xml) for html/xml output or --junitxml junit.xml # in order to write a coverage file that can be read by Jenkins. addopts = -# --cov probnum --cov-report term-missing --verbose --doctest-modules norecursedirs =