forked from janerikcarlsen/fpl-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (51 loc) · 1.6 KB
/
setup.py
File metadata and controls
54 lines (51 loc) · 1.6 KB
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
install_requires = [
"requests",
"future",
"click",
"pyfiglet",
"six",
"Prettytable",
"termcolor",
"colorama",
"configparser"
]
setuptools.setup(
name="fplcli",
version="0.1.9",
author="Jan-Erik Carlsen",
author_email="jan.erik.carlsen@gmail.com",
description="A CLI tool for Fantasy Premier League",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/janerikcarlsen/fpl-cli",
packages=setuptools.find_packages(),
entry_points={
'console_scripts': [
'fpl=fplcli.cli:main',
],
},
project_urls={
"Docs": "https://pypi.org/project/fplcli/",
"Source": "https://github.com/janerikcarlsen/fpl-cli"
},
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Topic :: Games/Entertainment",
],
install_requires=install_requires,
)