-
Notifications
You must be signed in to change notification settings - Fork 99
/
setup.py
46 lines (44 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
40
41
42
43
44
45
46
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="fpl",
version="0.6.35",
packages=find_packages(),
description="A Python wrapper for the Fantasy Premier League API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/amosbastian/fpl",
author="amosbastian",
author_email="amosbastian@gmail.com",
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"
],
keywords="fpl fantasy premier league",
project_urls={
"Documentation": "http://fpl.readthedocs.io/en/latest/",
"Source": "https://github.com/amosbastian/fpl"
},
install_requires=[
"certifi",
"Click",
"colorama",
"codecov",
"PTable",
"appdirs",
"aiohttp",
"pytest-aiohttp",
"pytest-cov",
"pytest-mock",
"pytest",
],
entry_points="""
[console_scripts]
fpl=fpl.cli:cli
""",
)