2019-07-17 13:54:09 +02:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
|
|
|
|
def long_description():
|
|
|
|
with open("README.rst", encoding="utf-8") as f:
|
|
|
|
return f.read()
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name="tox-current-env",
|
|
|
|
description="Use current environment instead of virtualenv for tox testenvs",
|
|
|
|
long_description=long_description(),
|
|
|
|
author="Miro Hrončok",
|
|
|
|
author_email="miro@hroncok.cz",
|
|
|
|
url="https://github.com/fedora-python/tox-current-env",
|
|
|
|
license="MIT",
|
2021-03-29 13:51:24 +02:00
|
|
|
version="0.0.6",
|
2019-07-17 13:54:09 +02:00
|
|
|
package_dir={"": "src"},
|
|
|
|
packages=find_packages("src"),
|
|
|
|
entry_points={"tox": ["current-env = tox_current_env.hooks"]},
|
2020-08-12 17:04:58 +02:00
|
|
|
install_requires=[
|
2020-11-20 20:50:14 +01:00
|
|
|
"tox>=3.15",
|
2020-08-27 17:35:19 +02:00
|
|
|
"importlib_metadata; python_version < '3.8'"
|
2020-08-12 17:04:58 +02:00
|
|
|
],
|
2019-07-17 13:54:09 +02:00
|
|
|
python_requires=">=3.6",
|
|
|
|
classifiers=[
|
|
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
"Framework :: tox",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
2019-07-22 14:31:38 +02:00
|
|
|
"Operating System :: POSIX :: Linux",
|
2019-07-17 13:54:09 +02:00
|
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
|
|
"Programming Language :: Python :: 3.6",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
2020-08-12 15:23:55 +02:00
|
|
|
"Programming Language :: Python :: 3.9",
|
2019-07-17 13:54:09 +02:00
|
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
|
|
"Topic :: Software Development :: Testing",
|
|
|
|
],
|
|
|
|
)
|