-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 765 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 765 Bytes
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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='football_packing',
version='0.2',
description='Calculate the packing rate for a given pass in football (soccer)',
long_description=readme(),
url='https://github.com/samirak93/Football-packing',
author='Samira Kumar',
author_email='samirakumarv@gmail.com',
license='LICENSE.txt',
packages=['football_packing'],
install_requires=[
'numpy >= 1.18.1',
'pandas >= 1.0.3',
'bokeh >= 2.0.2',
'scipy >= 1.4.1',
'scikit-learn >= 0.23.1',
],
keywords='soccer football analytics packing',
include_package_data=True,
zip_safe=False)