-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
26 lines (24 loc) · 871 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
#!/usr/bin/env python
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="ryanair-py",
version="3.0.0",
description="A module which allows you to retrieve data about the cheapest one-way and return flights "
"in a date range.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Ciarán Ó hAoláin",
author_email="ciaran@cohaolain.ie",
url="https://github.com/cohaolain/ryanair-py",
packages=["ryanair"],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
install_requires=["requests", "backoff"],
package_data={"ryanair": ["airports.csv"]},
)