-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
81 lines (79 loc) · 2.55 KB
/
setup.py
File metadata and controls
81 lines (79 loc) · 2.55 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
from setuptools import setup, find_packages
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="airports-py",
version="3.1.0",
packages=find_packages(),
install_requires=[],
author="Aashish Vivekanand",
author_email="aashishvanand@gmail.com",
license="CC-BY-4.0",
description="A comprehensive library providing easy retrieval of airport data based on IATA, ICAO, city codes, country codes, and continents. Features geographic search, distance calculation, timezone lookup, and external links integration.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://airportdata.dev",
project_urls={
"Source Code": "https://github.com/aashishvanand/airport-data-python",
"Bug Reports": "https://github.com/aashishvanand/airport-data-python/issues",
"Documentation": "https://github.com/aashishvanand/airport-data-python#readme",
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Database",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
],
keywords=[
"airport",
"iata",
"icao",
"data",
"library",
"aviation",
"travel",
"geography",
"lookup",
"codes",
"continent",
"city",
"country",
"flightradar24",
"radarbox",
"flightaware",
"distance",
"coordinates",
"timezone",
"search",
"autocomplete",
"filtering",
"geospatial",
"proximity",
"navigation",
],
python_requires=">=3.6",
extras_require={
"dev": [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"build>=1.0.0",
"twine>=4.0.0",
],
},
include_package_data=True,
package_data={
"airports": ["data/*.gz"],
},
)