-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
31 lines (27 loc) · 1.07 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
from setuptools import setup, find_packages
DISTNAME = "octopy"
VERSION = "1.0.0"
DESCRIPTION = """Octopy is a companion Python library for octosport.io. The library offers tools for football (soccer) analytics."""
LONG_DESCRIPTION = """Octopy is a companion Python library for octosport.io. The library offers tools for football (soccer) analytics."""
AUTHOR = "octosport.io"
AUTHOR_EMAIL = "[email protected]"
URL = "https://github.com/octosport/octopy"
LICENSE = "Apache License, Version 2.0"
REQUIREMENTS = ["pandas>=1.1.3", "scipy>=1.5.2", "scikit-learn>=0.23.2", "jax>=0.3.0"]
if __name__ == "__main__":
setup(
name=DISTNAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
license=LICENSE,
packages=find_packages(),
package_data={"docs": ["*"]},
include_package_data=True,
zip_safe=False,
install_requires=REQUIREMENTS,
classifiers=["Programming Language :: Python :: 3.7"],
)