Rev | Line | |
---|
[63] | 1 | # -*- coding: iso-8859-2 -*-
|
---|
| 2 |
|
---|
| 3 | from distutils.core import setup
|
---|
| 4 | import sys
|
---|
| 5 | import os
|
---|
| 6 |
|
---|
| 7 | scriptdir=os.path.abspath(os.path.dirname(sys.argv[0]))
|
---|
| 8 |
|
---|
| 9 | long_description="""Python client module for XPLRA
|
---|
| 10 |
|
---|
| 11 | XPLRA is the X-Plane Remote Access plugin that allows
|
---|
| 12 | external applications to read and write X-Plane datarefs.
|
---|
| 13 |
|
---|
| 14 | This module is a client module for this plugin that can be
|
---|
| 15 | used from Python programs."""
|
---|
| 16 |
|
---|
| 17 | setup(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.