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