From be6c8affad5ff917e88e6523260dca7e51f61bf3 Mon Sep 17 00:00:00 2001 From: Tomas Matlovic Date: Mon, 25 Nov 2019 15:36:36 +0100 Subject: [PATCH] Add README on pypi --- setup.py | 60 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/setup.py b/setup.py index d5e053d..35f53c4 100644 --- a/setup.py +++ b/setup.py @@ -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='tibor.arpas@infinit.sk', - author='Tibor Arpas, Daniel Hahler, Tomas Matlovic, Martin Racak', + license="AGPL", + platforms=["linux", "osx", "win32"], + packages=["testmon",], + url="https://testmon.org", + author_email="tibor.arpas@infinit.sk", + 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", + ], )