forked from amosbastian/understat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (37 loc) · 1.23 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
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="understat",
version="0.1.11",
packages=find_packages(),
description="A Python wrapper for https://understat.com/",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/amosbastian/understat",
author="amosbastian",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
],
keywords="fpl fantasy premier league understat football",
project_urls={
"Documentation": "http://fpl.readthedocs.io/en/latest/",
"Source": "https://github.com/amosbastian/fpl"
},
install_requires=[
"beautifulsoup4==4.11.1",
"pytest-aiohttp==1.0.4",
"pytest-cov==4.0.0",
"pytest-mock==3.6.0",
"pytest==7.2.0",
"aiohttp==3.8.3"
],
)