-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (25 loc) · 881 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
from setuptools import setup, find_packages
from codecs import open
from os import path
setup(
name='FBRank',
version='1.8.7',
description="A commandline tool helps you visualize league rank and other imformation",
url='https://github.com/Allianzcortex/FBRank',
author='Allianzcortex',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
],
keywords='Soccerball Manager SetupTools',
packages=find_packages(),
install_requires=['requests', 'beautifulsoup4', 'prettytable', 'translate'],
entry_points={
'console_scripts': [
'FB=FBRank.main:execute',
],
},
)