15 lines
285 B
Python
15 lines
285 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name = "dtk",
|
|
version = "0.0.0",
|
|
author = "Decadic",
|
|
packages = ["dtk"],
|
|
url = "https://git.decade.cz/decadic/dtk/",
|
|
license = "LICENSE",
|
|
description = "Decadic toolkit.",
|
|
install_requires = [
|
|
"jsmin >= 2.2.2",
|
|
"json >= 2.0.9"
|
|
]
|
|
)
|