forked from futapi/fut
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·68 lines (63 loc) · 2.44 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
__title__ = 'fut14'
__version__ = '0.0.13'
__author__ = 'Piotr Staroszczyk'
__author_email__ = '[email protected]'
__license__ = 'GNU GPL v3'
__copyright__ = 'Copyright 2013 Piotr Staroszczyk'
packages = [
'fut14',
#'fut14.modules',
]
with open('requirements.txt') as f:
requires = f.read().splitlines()
setup(
name=__title__,
version=__version__,
description='fut14 is a simple library for managing Fifa 14 Ultimate Team.',
long_description=open('README.rst').read(),
author=__author__,
author_email=__author_email__,
url='https://github.com/oczkers/%s' % __title__,
download_url='https://github.com/oczkers/%s/releases' % __title__,
bugtrack_url='https://github.com/oczkers/%s/issues' % __title__,
platforms='any',
keywords='fut fut14 fifa fifa14 fifa2014 ultimate team ut 14 2014 pc xbox android ios 360 ps3 playstation',
packages=packages,
package_data={'': ['LICENSE']},
package_dir={'fut14': 'fut14'},
include_package_data=True,
install_requires=requires,
#license=open('LICENSE').read(),
license=__license__,
classifiers=(
'Development Status :: 3 - Alpha',
#'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
#'Programming Language :: Python :: 3.0', # not tested
#'Programming Language :: Python :: 3.1', # not tested
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
#'Programming Language :: Python :: Implementation :: CPython', # not tested
#'Programming Language :: Python :: Implementation :: IronPython', # not tested
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Internet :: WWW/HTTP :: Site Management',
'Topic :: Software Development :: Libraries :: Python Modules',
),
# entry_points={
# 'console_scripts': [
# 'fut14 = fut14.cli:main',
# ]
# }
)