-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (26 loc) · 865 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
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='basketballtrainer',
version='0.1dev',
description='Basketball detector training package',
long_description=readme,
author='Ivan Pelizon',
author_email='ivan.pelizon@gmail.com',
url='https://peiva-git.github.io/basketball_trainer/',
license=license,
packages=find_packages(exclude=('tests', 'docs', 'output', 'assets')),
python_requires='>=3.8,<=3.11',
install_requires=required_packages,
entry_points={
'console_scripts': [
'train = basketballtrainer.cli:train_model_command',
'evaluate = basketballtrainer.cli:evaluate_model_command'
]
},
)