-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (22 loc) · 915 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
"""Copyright (C) SquareFactory SA - All Rights Reserved.
This source code is protected under international copyright law. All rights
reserved and protected by the copyright holders.
This file is confidential and only available to authorized individuals with the
permission of the copyright holders. If you encounter this file and do not have
permission, please contact the copyright holders and delete this file.
"""
from setuptools import find_packages, setup
with open("train/train_requirements.txt") as f:
requirements = f.read().splitlines()
setup(
name="retina",
packages=find_packages(include=["retina", "retina.*"]),
package_data={"retina": ["config.yml"]},
version="0.0.1",
description="Face detector and pixelizer, isquare train example",
author="SquareFactory SA",
license="MIT",
requires_python=">=3.8",
install_requires=requirements,
setup_requires=[],
)