19 lines
329 B
Python
19 lines
329 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"],
|
|
)
|
|
|
|
|
|
setup(**kwargs)
|