File size: 458 Bytes
ff88fc5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #!/usr/bin/env python
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
from setuptools import setup
setup(
name="hydra-app",
version="0.1",
packages=["hydra_app"],
entry_points={"console_scripts": ["hydra_app = hydra_app.main:main"]},
author="you!",
author_email="your_email@example.com",
url="http://hydra-app.example.com",
include_package_data=True,
install_requires=["hydra-core~=1.0.0rc1"],
)
|