dec8/setup.py
2022-05-05 16:30:48 +02:00

15 lines
294 B
Python
Executable file

from distutils.core import setup
setup(
name = "dec8",
version = "0.2.0",
author = "Decade",
packages = ["dec8"],
url = "https://git.decade.cz/decade-public/dec8/",
license = "LICENSE",
description = "Decadic toolkit.",
install_requires = [
"jsmin >= 2.2.2",
"pytz >= 2022.1"
]
)