forked from OpenSportsLab/OSL-ActionSpotting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (60 loc) · 2.5 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
55
56
57
58
59
60
61
62
63
64
# from distutils.core import setup1
import os
import sys
from shutil import rmtree
from setuptools import setup, find_packages, Command
from oslactionspotting import __version__, __authors__, __author_email__, __github__
with open('README.md','r', encoding='utf-8') as readme_file:
readme = readme_file.read()
print(find_packages())
setup(
name='oslactionspotting', # How you named your package folder (MyLib)
packages= find_packages(),
# packages=['oslactionspotting'], # Chose the same as "name"
# Start with a small number and increase it with every change you make
version=__version__,
# Chose a license from here: https://help.github.com/articles/licensing-a-repository
license='MIT',
description='Action Spotting SDK', # Give a short description about your library
long_description=readme + '\n\n',
long_description_content_type='text/markdown',
author=__authors__, # Type in your name
author_email=__author_email__, # Type in your E-Mail
url=__github__, # Provide either the link to your github or to your website
# download_url = 'https://github.com/user/reponame/archive/v_01.tar.gz', # I explain this later on
keywords=['SoccerNet', 'SDK', 'Spotting', 'Football', 'Soccer',
'Video'], # Keywords that define your package best
# package_data={'SoccerNet': [
# 'SoccerNet/data/*.json', 'SoccerNet/data/SNMOT*.txt']},
include_package_data=True,
install_requires=[
'tqdm',
'SoccerNet',
'matplotlib',
'scikit-learn',
'mmengine',
'pytorch-lightning',
'numpy',
'opencv-python',
'moviepy',
'tabulate',
'timm'
# 'scikit-video',
# 'google-measurement-protocol',
# 'pycocoevalcap',
],
classifiers=[
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Development Status :: 3 - Alpha',
# Define that your audience are developers
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License', # Again, pick a license
# Specify which pyhton versions that you want to support
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
)