-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
42 lines (36 loc) · 1.54 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
from os import getenv, path
from dotenv import load_dotenv
from setuptools import find_packages, setup
load_dotenv()
with open("README.md", "r") as fh:
long_description = fh.read()
with open(path.join(path.dirname(path.abspath(__file__)), "requirements.txt")) as requirement_file:
install_requirements = requirement_file.read().split("/n")
name = "flydenity"
version = getenv("VERSION")
release = version
setup(
name=name,
version=version,
release=release,
description="Flydenity is an aircraft callsign identification library. Parsers aircraft registration prefix to identify nation of origin",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Collen-Roller/arp",
author="Collen Roller",
author_email="collen.roller@gmail.com",
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords=["aircraft", "planes", "registration", "callsign", "prefix", "aircraft callsign", "plane", "air"],
packages=find_packages(),
python_requires=">=3.6", # Version of Python required to install
install_requires=install_requirements, # Install requirements
extras_require={"dev": ["check-manifest"]},
entry_points={"console_scripts": ["flydenity = flydenity.__main__:main"]},
include_package_data=True, # Including package data (IMPORTANT)
)