over/setup.py
Martinez 3a8ae90597 2.0 RELEASE (candidate :)
- removed old garbage
- distutils
2017-10-10 00:26:52 +02:00

15 lines
315 B
Python

from distutils.core import setup
setup(
name="over",
version="2.0.0",
author="Aggregate",
packages=["over"],
url="https://git.covalent.cz/overwatch/over/",
license="LICENSE.txt",
description="Useful libraries derived from the Overwatch UAV.",
install_requires=[
"pytz >= 2017.2",
"tzlocal >= 1.2"
]
)