-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
executable file
·36 lines (31 loc) · 1.13 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
#!/usr/bin/env python
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='yahoo_fantasy_api',
version='2.9.1',
description='Python bindings to access the Yahoo! Fantasy APIs',
long_description=readme(),
url='http://github.com/spilchen/yahoo_fantasy_api',
author='Matt Spilchen',
author_email='[email protected]',
license='MIT',
packages=['yahoo_fantasy_api'],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
],
install_requires=['objectpath', 'pytz', 'yahoo_oauth',
'docopt'],
python_requires='>=3',
zip_safe=False,
scripts=['yahoo_fantasy_api/scripts/yfa_draft_results',
'yahoo_fantasy_api/scripts/yfa_init_oauth_env',
'yahoo_fantasy_api/scripts/yfa_league',
'yahoo_fantasy_api/scripts/yfa_team']
)