-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
30 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,38 @@ | ||
from setuptools import setup | ||
|
||
long_description = "".join(open("README.rst").readlines()) | ||
|
||
setup( | ||
name='pytest-testmon', | ||
description='automatically selects tests affected by changed files and methods', | ||
long_description='TODO', | ||
name="pytest-testmon", | ||
description="selects tests affected by changes files and methods", | ||
long_description=long_description, | ||
version='1.0.0', | ||
license='AGPL', | ||
platforms=['linux', 'osx', 'win32'], | ||
packages=['testmon'], | ||
url='https://testmon.org', | ||
author_email='[email protected]', | ||
author='Tibor Arpas, Daniel Hahler, Tomas Matlovic, Martin Racak', | ||
license="AGPL", | ||
platforms=["linux", "osx", "win32"], | ||
packages=["testmon",], | ||
url="https://testmon.org", | ||
author_email="[email protected]", | ||
author="Tibor Arpas, Tomas Matlovic, Daniel Hahler, Martin Racak", | ||
entry_points={ | ||
'pytest11': [ | ||
'testmon = testmon.pytest_testmon', | ||
], | ||
'tox': [ | ||
'testmon = testmon.tox_testmon', | ||
], | ||
"pytest11": ["testmon = testmon.pytest_testmon",], | ||
"tox": ["testmon = testmon.tox_testmon",], | ||
}, | ||
install_requires=['pytest>=5,<6', 'coverage>=4,<5'], | ||
python_requires=">=3.6", | ||
install_requires=["pytest>=5,<6", "coverage>=4,<5"], | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'Operating System :: POSIX', | ||
'Operating System :: Microsoft :: Windows', | ||
'Operating System :: MacOS :: MacOS X', | ||
'Topic :: Software Development :: Testing', | ||
'Topic :: Software Development :: Libraries', | ||
'Topic :: Utilities', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3 :: Only'], | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"Operating System :: POSIX", | ||
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Topic :: Software Development :: Testing", | ||
"Topic :: Software Development :: Libraries", | ||
"Topic :: Utilities", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3 :: Only", | ||
], | ||
) |