-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (27 loc) · 921 Bytes
/
setup.py
File metadata and controls
32 lines (27 loc) · 921 Bytes
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
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
with open('requirements.txt') as f:
required_packages = f.read()
setup(
name='basketballdetector',
version='0.1dev',
description='Basketball detection package',
long_description=readme,
author='Ivan Pelizon',
author_email='ivan.pelizon@gmail.com',
url='',
license=license,
packages=find_packages(exclude=('tests', 'docs', 'out', 'assets')),
python_requires='>=3.8,<=3.11',
install_requires=required_packages,
entry_points={
'console_scripts': [
'save-predictions = basketballdetector.cli:save_predictions_command',
'show-predictions = basketballdetector.cli:display_predictions_command',
'test-speed = basketballdetector.cli:test_prediction_speed_command'
]
},
)