github.com/ouraigua/jenkins-library@v0.0.0-20231028010029-fbeaf2f3aa9b/integration/testdata/TestPythonIntegration/python-project/setup.py (about) 1 import setuptools 2 3 setuptools.setup( 4 name="example-pkg", 5 version="0.0.1", 6 author="Example Author", 7 author_email="author@example.com", 8 description="A small example package", 9 long_description="Long description for small example package", 10 long_description_content_type="text/markdown", 11 url="https://github.com/example/pypi/github", 12 packages=setuptools.find_packages(), 13 classifiers=[ 14 "Programming Language :: Python :: 3", 15 "License :: OSI Approved :: MIT License", 16 "Operating System :: OS Independent", 17 ], 18 python_requires='>=3.6', 19 )