-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 790 Bytes
/
setup.py
File metadata and controls
34 lines (30 loc) · 790 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
28
29
30
31
32
33
34
import setuptools
from distutils.core import setup
with open('README.md', 'r', encoding='utf8') as f:
readme = f.read()
setup(
name='statsbombapi',
description='A wrapper for the Statsbomb API and public data.',
version='0.1.0-dev',
packages=setuptools.find_packages(),
author='Ben Torvaney',
author_email='torvaney@protonmail.com',
url='https://github.com/Torvaney/statsbombapi',
license='GPLv3+',
long_description=readme,
python_requires='>=3.7',
install_requires=[
'dataclasses-json>=0.4.2',
'requests>=2.23.0'
],
extras_require={
'dev': [
'pytest',
'ipython',
'mypy>=0.710',
'hypothesis',
'flake8',
'simplejson'
]
}
)