-
Notifications
You must be signed in to change notification settings - Fork 106
/
setup.cfg
49 lines (43 loc) · 1.34 KB
/
setup.cfg
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
[metadata]
name = SimConnect
version = attr: SimConnect.__version__
description = Adds a pythonic wrapper for SimConnect SDK.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/odwdinc/Python-SimConnect
author = Anthony Pray
author_email = anthony.pray@gmail.com
maintainer = Anthony Pray
maintainer_email = anthony.pray@gmail.com
keywords = ctypes, FlightSim, SimConnect, Flight, Simulator
license = AGPL 3.0
classifiers =
Development Status :: 2 - Pre-Alpha
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: Implementation :: CPython
[options]
packages = SimConnect
python_requires = >=3.6
include_package_data=True
test_suite="tests"
[flake8]
exclude = .venv,.tox,dist,docs,build,*.egg,env,venv,.undodir
[bdist_wheel]
universal = 1
[build-system]
requires = ["setuptools >= 40.6.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool:pytest]
minversion = 6.0
testpaths =
tests
log_level = DEBUG
log_cli_level = DEBUG