/Release/Product/Python/PyKinect/PyKinect/setup.py

http://pytools.codeplex.com · Python · 49 lines · 37 code · 4 blank · 8 comment · 2 complexity · ed87d8c24d49d0bd3b8c6a95732df5e5 MD5 · raw file

  1. # ############################################################################
  2. #
  3. # Copyright (c) Microsoft Corporation.
  4. #
  5. # Available under the Microsoft PyKinect 1.0 Alpha license. See LICENSE.txt
  6. # for more information.
  7. #
  8. # ###########################################################################/
  9. try:
  10. from setuptools import setup
  11. except ImportError:
  12. from distutils.core import setup
  13. classifiers = """\
  14. Development Status :: 4 - Beta
  15. Environment :: Win32 (MS Windows)
  16. License :: Free for non-commercial use
  17. License :: Other/Proprietary License
  18. Natural Language :: English
  19. Operating System :: Microsoft
  20. Operating System :: Microsoft :: Windows :: Windows NT/2000
  21. Programming Language :: C++
  22. Programming Language :: Python
  23. Programming Language :: Python :: 2.7
  24. Programming Language :: Python :: 2 :: Only
  25. Topic :: Games/Entertainment
  26. Topic :: Multimedia :: Graphics
  27. Topic :: Multimedia :: Graphics :: Capture
  28. Topic :: Multimedia :: Sound/Audio
  29. """
  30. setup(name='pykinect',
  31. version='1.0',
  32. description='PyKinect Module for interacting with the Kinect SDK',
  33. long_description='The pykinect package provides access to the Kinect device. The pykinect package includes both the "nui" and "audio" subpackages. The nui package provides interactions with the Kinect cameras including skeleton tracking, video camera, as well as the depth camera. The audio subpackage provides access to the Kinect devices microphones.',
  34. author='Microsoft',
  35. author_email='vspython@microsoft.com',
  36. url='http://pytools.codeplex.com/',
  37. packages=['pykinect', 'winspeech', 'pykinect.audio', 'pykinect.nui'],
  38. platforms=["win32"],
  39. classifiers = filter(None, classifiers.split("\n")),
  40. package_data={
  41. 'pykinect.audio': ['*.dll'],
  42. 'pykinect': ['LICENSE.txt'],
  43. 'winspeech' : ['LICENSE.txt']
  44. },
  45. )