summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg13
1 files changed, 10 insertions, 3 deletions
diff --git a/setup.cfg b/setup.cfg
index 69eb0ee..14bff40 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,22 +1,25 @@
[metadata]
-name = skeleton
+name = pytest-runner
author = Jason R. Coombs
author_email = jaraco@jaraco.com
-description = skeleton
+description = Invoke py.test as distutils command with dependency resolution
long_description = file:README.rst
-url = https://github.com/jaraco/skeleton
+url = https://github.com/pytest-dev/pytest-runner/
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
+ Framework :: Pytest
[options]
packages = find_namespace:
+py_modules = ptr
include_package_data = true
python_requires = >=3.6
install_requires =
+ # setuptools 27.3 is required at run time
[options.packages.find]
exclude =
@@ -41,6 +44,7 @@ testing =
pytest-enabler >= 1.0.1
# local
+ pytest-virtualenv
docs =
# upstream
@@ -51,3 +55,6 @@ docs =
# local
[options.entry_points]
+distutils.commands =
+ ptr = ptr:PyTest
+ pytest = ptr:PyTest