forked from PySport/kloppy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.2 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
import setuptools
from distutils.core import setup
with open("README.md", "r") as f:
readme = f.read()
setup(
name="kloppy",
version="1.0.0",
author="Koen Vossen",
author_email="info@koenvossen.nl",
url="https://kloppy.pysport.org/",
packages=setuptools.find_packages(exclude=["tests"]),
license="BSD",
description="Standardizing soccer tracking- and event data",
long_description=readme,
long_description_content_type="text/markdown",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved",
"Topic :: Scientific/Engineering",
],
entry_points={
"console_scripts": ["kloppy-query = kloppy.cmdline:run_query"]
},
install_requires=[
"lxml>=4.5.0",
"requests>=2.0.0",
"networkx>=2.4",
'dataclasses;python_version<"3.7"',
],
extras_require={
"test": ["pytest", "pandas>=1.0.0"],
"development": ["pre-commit"],
},
)