-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (34 loc) · 1.14 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
import os
from setuptools import setup, find_packages
import time
with open('README.md', encoding='utf-8') as f:
long_desc = f.read()
setup(
name='XPlaneApi',
version='0.0.5',
license='MIT',
author="Massimo Pietracupa",
author_email='[email protected]',
packages=['XPlaneApi', 'examples'],
scripts=['examples/example1.py'],
url='https://github.com/Pietracoops/XPlane_Python_Client',
keywords='XPlane API',
description='API Python Client for C++ Xplane Server',
long_description_content_type='text/markdown',
long_description=long_desc,
install_requires=[
'pyzmq==23.2.1',
'zmq'
],
python_requires=">=3.7",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)