Skip to content

Commit

Permalink
Add README on pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
Matlino committed Nov 25, 2019
1 parent 3d80619 commit be6c8af
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions setup.py
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",
],
)

0 comments on commit be6c8af

Please sign in to comment.