forked from joeyagreco/leeger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (24 loc) · 767 Bytes
/
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
import setuptools
pkg_vars = dict()
with open("leeger/_version.py") as f:
exec(f.read(), pkg_vars)
with open("README.md") as f:
readme = f.read()
setuptools.setup(
name="leeger",
version=pkg_vars["__version__"],
author="Joey Greco",
author_email="joeyagreco@gmail.com",
description="Instant stats for your fantasy football league.",
long_description_content_type="text/markdown",
long_description=readme,
license="MIT",
packages=setuptools.find_packages(exclude=("test", "docs")),
install_requires=["numpy",
"setuptools",
"openpyxl",
"espn-api",
"yahoofantasy",
"sleeper",
"pymfl"]
)