forked from makerplane/pyEfis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
57 lines (53 loc) · 1.78 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
"""A setuptools based setup module."""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / "README.rst").read_text(encoding="utf-8")
setup(
name="pyEfis",
version="0.1.0",
description="An Electronic Flight Information System written in Python.",
long_description=long_description,
long_description_content_type="text/rst",
url="https://github.com/btwatts/pyEfis",
author="MakerPlane Open Source Aviation",
author_email="[email protected]",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
],
keywords="aviation, makerplane, efis",
package_data={
"pyefis": ["config/*"],
},
packages=find_packages(exclude=["tests.*", "tests"]),
python_requires=">=3.7, <4",
install_requires=[
"geomag==0.9.2015",
"PyYAML==6.0.1",
"pyavtools==0.1.0",
"PyQt6==6.4.2",
],
extras_require={
"build": ["build==0.10.0"],
},
entry_points={
"console_scripts": [
"pyefis=pyefis.main:main",
],
},
project_urls={
"Homepage": "https://makerplane.org/",
"Source": "https://github.com/makerplane/pyEfis",
},
)