15 lines
315 B
Python
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"
|
|
]
|
|
)
|