source: xplra/setup.py@ 63:28c164b6716f

Last change on this file since 63:28c164b6716f was 63:28c164b6716f, checked in by István Váradi <ivaradi@…>, 11 years ago

Added a script to create the Python client MSI

File size: 800 bytes
Line 
1# -*- coding: iso-8859-2 -*-
2
3from distutils.core import setup
4import sys
5import os
6
7scriptdir=os.path.abspath(os.path.dirname(sys.argv[0]))
8
9long_description="""Python client module for XPLRA
10
11XPLRA is the X-Plane Remote Access plugin that allows
12external applications to read and write X-Plane datarefs.
13
14This module is a client module for this plugin that can be
15used from Python programs."""
16
17setup(name = "xplra",
18 version = "0.1",
19 description = "Python client module for XPLRA",
20 long_description = long_description,
21 platforms = ["Win32"],
22 license = "Public Domain",
23 author = "István Váradi",
24 author_email = "ivaradi@gmail.com",
25 url = "http://xplane.varadiistvan.hu",
26 package_dir = { '' : 'src/client/python' },
27 py_modules = ["xplra"])
Note: See TracBrowser for help on using the repository browser.