21 lines
429 B
Python
21 lines
429 B
Python
from __future__ import annotations
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
kwargs = dict(
|
|
name="Demo",
|
|
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=["demo"],
|
|
install_requires=["pendulum>=1.4.4"],
|
|
extras_require={"foo": ["cleo"], "bar": ["tomlkit"]},
|
|
)
|
|
|
|
|
|
setup(**kwargs)
|