forked from fedora-python/tox-current-env
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 1.16 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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="[email protected]",
url="https://github.com/fedora-python/tox-current-env",
license="MIT",
version="0.0.1dev1",
package_dir={"": "src"},
packages=find_packages("src"),
entry_points={"tox": ["current-env = tox_current_env.hooks"]},
install_requires=["tox>=3.8.1"],
python_requires=">=3.6",
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: tox",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Testing",
],
)