-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (27 loc) · 892 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
26
27
28
29
30
31
32
""" Script to install the project """
import os
from setuptools import find_packages, setup
this_code_dirname = os.path.dirname(os.path.realpath(__file__))
with open(
os.path.join(this_code_dirname, "README.md"), "r", encoding="utf-8"
) as file:
long_description = file.read()
setup(
name="bowlrelease",
author="Davide Zambrano",
author_email="[email protected]",
url="https://github.com/DeepSportradar/cricket-bowl-release-challenge",
description="A toolkit for the DeepSportradar Bowl Release challenge. An opportunity to publish at MMSports @ ACMMM and to win 2x $500.",
long_description=long_description,
python_requires=">=3.7",
packages=find_packages(),
include_package_data=True,
install_requires=[
"numpy",
"pycocotools",
"scipy",
"torch",
"torchvision",
"vidgear",
],
)