poetry/tests/fixtures/project_with_setup/setup.py

20 lines
416 B
Python

from __future__ import annotations
from setuptools import setup
kwargs = dict(
name="project-with-setup",
license="MIT",
version="0.1.2",
description="Demo project.",
author="Sébastien Eustace",
author_email="sebastien@eustace.io",
url="https://github.com/demo/demo",
packages=["my_package"],
install_requires=["pendulum>=1.4.4", "cachy[msgpack]>=0.2.0"],
)
setup(**kwargs)