-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (27 loc) · 936 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
27
28
29
30
"""
Copyright (c) 2021 Faisal Thaheem (https://github.com/faisalthaheem/python-stanag-4586-EDA-v1)
License GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007
"""
import pathlib
from setuptools import find_packages, setup
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
name='stanag4586edav1',
packages=find_packages(include=['stanag4586edav1']),
version='0.0.15',
description='Python Stanag 4586 Edition A v1',
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/faisalthaheem/python-stanag-4586-EDA-v1",
author='Faisal Thaheem',
license='GPLV3',
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
],
install_requires=[],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
test_suite='tests',
)