summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2018-10-15 07:30:07 +0200
committerRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2018-10-15 07:30:07 +0200
commit7855284ef72bb7176aca7eba90e02f6825eb17f9 (patch)
treee208de76fa5ea2ae936869c7e44bf891cc490b1d /setup.cfg
parentd4351ac5a287eb96521f09618bbbe1c73f4e6884 (diff)
downloadpytest-7855284ef72bb7176aca7eba90e02f6825eb17f9.tar.gz
move most setuptools parameters over to setup.cfg
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg26
1 files changed, 25 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index e01ab74d5..a898b66c6 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -3,10 +3,16 @@
name = pytest
description = pytest: simple powerful testing with Python
long_description = file: README.rst
+url = "https://docs.pytest.org/en/latest/"
+project_urls =
+ Source=https://github.com/pytest-dev/pytest
+ Tracker=https://github.com/pytest-dev/pytest/issues
+author = Holger Krekel, Bruno Oliveira, Ronny Pfannschmidt, Floris Bruynooghe, Brianna Laugher, Florian Bruhin and others
+license = MIT license
license_file = LICENSE
-
+keywords = test, unittest
classifiers =
Development Status :: 6 - Mature
Intended Audience :: Developers
@@ -24,7 +30,25 @@ classifiers =
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
+platforms = unix, linux, osx, cygwin, win32
+
+[options]
+zip_safe = no
+packages =
+ _pytest
+ _pytest.assertion
+ _pytest._code
+ _pytest.mark
+ _pytest.config
+
+py_modules = pytest
+python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
+
+[options.entry_points]
+console_scripts =
+ pytest=pytest:main
+ py.test=pytest:main
[build_sphinx]
source-dir = doc/en/