-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
17 lines (16 loc) · 849 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup
setup(name='fantasy_football_auction',
packages=['fantasy_football_auction'],
version='0.9.97',
description='Python library simulating a fantasy football auction. Intended to be used for AI, but you should be '
'able to use this for other purposes as well. This task assumes that each draftable player has a '
'specific value (for example, looking at the ratings from FantasyPros).',
author='Kyle Hipke',
author_email='[email protected]',
url='https://github.com/chairbender/fantasy-football-auction',
download_url='https://github.com/chairbender/fantasy-football-auction/archive/0.9.97.tar.gz',
keywords=['AI', 'football', 'fantasy', 'auction'],
classifiers=[],
python_requires=">=3.6",
install_requires=[]
)