source: xplra/setup.py@ 116:a80aa46892e9

Last change on this file since 116:a80aa46892e9 was 116:a80aa46892e9, checked in by István Váradi <ivaradi@…>, 17 months ago

The Python package's version also stepped to 0.3

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.3",
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.