forked from josuebrunel/yahoo-fantasy-sport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·46 lines (42 loc) · 1.51 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
import os
from setuptools import setup, find_packages
__author__ = 'Josue Kouka'
__email__ = '[email protected]'
__version__ = "0.1.1"
#requirements.txt
with open('requirements.txt') as f:
required = f.read().splitlines()
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "yahoo-fantasy-sports",
version = __version__,
description = "Python Yahoo Fantasy Sports Wrapper",
long_description = read("README.rst"),
author = __author__,
author_email = __email__,
url = "https://github.com/josuebrunel/yahoo-fantasy-sport",
download_url = "https://github.com/josuebrunel/myql/archive/{0}.tar.gz".format(__version__),
keywords = ['fantasy sports', 'yahoo'],
packages = find_packages(),
tests_suite="tests",
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Development Status :: 5 - Production/Stable',
'Topic :: Software Development :: Libraries :: Python Modules',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License'
],
platforms=['Any'],
license='MIT',
install_requires = required
)