forked from dtcarls/fantasy_football_chat_bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (21 loc) · 759 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
28
29
30
31
32
33
from setuptools import setup
setup(
name='ff_bot',
packages=['ff_bot'],
include_package_data=True,
version='0.3.0',
description='ESPN fantasy football GroupMe Bot',
author='Dean Carlson',
author_email='[email protected]',
install_requires=['requests>=2.0.0,<3.0.0', 'espn_api>=0.5.1', 'apscheduler>3.0.0'],
test_suite='nose.collector',
tests_require=['nose', 'requests_mock'],
url='https://github.com/dtcarls/ff_bot',
classifiers=[
'Natural Language :: English',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)