forked from JeanExtreme002/FlightRadarAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 909 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 909 Bytes
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
# -*- coding: utf-8 -*-
from FlightRadar24 import __version__
from setuptools import setup, find_packages
with open("README.md") as file:
README = file.read()
setup(
name = "FlightRadarAPI",
version = __version__,
description = "API for FlightRadar24",
long_description = README,
long_description_content_type = "text/markdown",
author = "Jean Loui Bernard Silva de Jesus",
url = "https://github.com/JeanExtreme002/FlightRadarAPI",
license = "MIT",
keywords = "flightradar24 api",
packages = find_packages(exclude = ("tests", "docs")),
install_requires = ["Brotli", "requests"],
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
]
)