-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
64 lines (61 loc) · 2.45 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
from setuptools import setup, find_packages
from os import path
#------------------------------------------------------------------------------
# The current standard for setup info.
# For details, see:
# https://packaging.python.org/guides/distributing-packages-using-setuptools/
# https://github.com/pypa/sampleproject/blob/master/setup.py
# https://pypi.org/classifiers/
# https://choosealicense.com/
#------------------------------------------------------------------------------
def readme():
# Get the long description from the README file
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
return f.read()
setup(
name = 'iata-arrivals-cli',
version = '1.0.2',
author = 'E:V:A',
author_email = '[email protected]',
description = 'Get flight arrivals, departures, airport details and METAR weather info from CLI.',
#long_description = 'Get various airport information by providing an airport IATA code or country name.',
#long_description_content_type='text/plain',
long_description = readme(),
long_description_content_type = 'text/markdown',
license='LICENSE.txt',
url = 'https://github.com/e3v3a/iata-arrivals-cli/',
packages = find_packages(),
scripts=['arrivals.py'],
keywords = 'airport flights arrivals departures iata icao metar pip package cli',
install_requires=[
'lxml',
'requests',
'beautifulsoup4',
'jsonpath-rw',
'metar',
'pyflightdata'
],
python_requires = '>=3',
classifiers=[
#'Private :: Do Not Upload',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'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',
'Topic :: Internet',
'Topic :: Utilities',
],
project_urls={
'Bug Reports': 'https://github.com/e3v3a/iata-arrivals-cli/issues',
#'Funding' : 'https://donate.pypi.org',
#'Credits' : 'http://saythanks.io/to/example',
#'Source' : 'https://github.com/pypa/sampleproject/',
},
#zip_safe = False,
)