-
Notifications
You must be signed in to change notification settings - Fork 269
/
setup.py
54 lines (51 loc) · 1.45 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import pathlib
import setuptools
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text(encoding="utf-8")
setuptools.setup(
name="sports",
version='0.1.0',
python_requires=">=3.8",
description="",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/roboflow/sports",
author="Piotr Skalski",
license='MIT',
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=[
"supervision",
"numpy",
"opencv-python",
"transformers",
"umap-learn",
"scikit-learn",
"tqdm",
"sentencepiece",
"protobuf"
],
extras_require={
'tests': [
'pytest',
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Typing :: Typed',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS'
]
)