commit 0c262ae75850203d721955441ec17044ba96c413 from: Sergey Bronnikov via: Sergey Bronnikov date: Tue Jul 14 12:12:30 2020 UTC add setup.py to build a python module commit - 0065384fe18b51083ebdd5045035d2b6840a2945 commit + 0c262ae75850203d721955441ec17044ba96c413 blob - /dev/null blob + 90e1782a34ca3ab5bd2118efa145142fed7debf6 (mode 644) --- /dev/null +++ setup.py @@ -0,0 +1,24 @@ +import setuptools + +with open("README.md", "r") as fh: + long_description = fh.read() + +setuptools.setup( + name="git-test", + version="0.1.0", + author="Sergey Bronnikov", + author_email="estetus@gmail.com", + description="Run automated tests against a range of Git commits and keep track of the results ", + long_description=long_description, + long_description_content_type="text/markdown", + url="https://github.com/ligurio/git-test", + packages=setuptools.find_packages(), + classifiers=[ + "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", + "Operating System :: OS Independent", + "Programming Language :: Python :: 3", + "Topic :: Software Development :: Testing", + "Topic :: Software Development :: Version Control :: Git", + ], + python_requires='>=3.6', +)