Exemple #1
0
    if l.find('__version__') == 0:
      version = (l.split('=')[1]).strip().strip("\'\"")
      break

setup(name='pi3d',
      version=version,
      description='pi3d OpenGLES2 3D graphics library',
      author='Tim Skillman, Paddy Gaunt, Tom Ritchford',
      author_email='http://pi3d.github.com/html/index.html',
      url='http://pi3d.github.com/html/index.html',
      packages=['pi3d','pyxlib','pi3d.constants','pi3d.shape','pi3d.util',
          'pi3d.event','pi3d.loader','pi3d.sprite','pi3d.'],
      py_modules=['six_mod'],
      package_data={'pi3d': ['shaders/*', 'util/icons/*']},
      data_files=[('', ['ChangeLog.txt'])],
      license='MIT generally but see docstrings in specific files',
      platforms=['Raspberry Pi', 'Linux (requires X and mesa-utils-extra)',
                 'Windows (requires pygame and ANGLE dll_s)'],
      long_description=open('README', 'r').read(),
      classifiers=['Development Status :: 5 - Production/Stable',
              'Programming Language :: Python :: 2',
              'Programming Language :: Python :: 3',
              'Topic :: Education',
              'Topic :: Games/Entertainment :: First Person Shooters',
              'Topic :: Games/Entertainment :: Simulation',
              'Topic :: Multimedia :: Graphics :: 3D Modeling',
              'Topic :: Multimedia :: Graphics :: 3D Rendering',
              'Topic :: Software Development :: Libraries :: Python Modules',
              ],
     )
Exemple #2
0
    if l.find('__version__') == 0:
      version = (l.split('=')[1]).strip().strip("\'\"")
      break

setup(name='pi3d',
      version=version,
      description='pi3d OpenGLES2 3D graphics library',
      author='Tim Skillman, Paddy Gaunt, Tom Ritchford',
      author_email='*****@*****.**',
      url='http://pi3d.github.com/html/index.html',
      packages=['pi3d','pyxlib','pi3d.constants','pi3d.shape','pi3d.util',
          'pi3d.event','pi3d.loader','pi3d.sprite','pi3d.'],
      py_modules=['six_mod'],
      package_data={'pi3d': ['shaders/*', 'util/icons/*']},
      data_files=[('', ['ChangeLog.txt'])],
      license='MIT generally but see docstrings in specific files',
      platforms=['Raspberry Pi', 'Linux (requires X and mesa-utils-extra)',
                 'Windows (requires pygame and ANGLE dll_s)'],
      long_description=open('README', 'r').read(),
      classifiers=['Development Status :: 5 - Production/Stable',
              'Programming Language :: Python :: 2',
              'Programming Language :: Python :: 3',
              'Topic :: Education',
              'Topic :: Games/Entertainment :: First Person Shooters',
              'Topic :: Games/Entertainment :: Simulation',
              'Topic :: Multimedia :: Graphics :: 3D Modeling',
              'Topic :: Multimedia :: Graphics :: 3D Rendering',
              'Topic :: Software Development :: Libraries :: Python Modules',
              ],
     )
Exemple #3
0
setup(
    name='WSDiscovery',
    version='1.1.1',
    description='WS-Discovery implementation for python',
    long_description=README + "\n\n" + CHANGES,
    long_description_content_type="text/markdown",
    author='Andrei Kopats',
    author_email='*****@*****.**',
    url='https://github.com/tosscaster/python-ws-discovery.git',
    classifiers=[
        'Development Status :: 4 - Beta', 'Environment :: Console',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
        'Operating System :: MacOS :: MacOS X',
        'Operating System :: POSIX :: Linux',
        'Programming Language :: Python :: 2',
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.3',
        'Programming Language :: Python :: 3.4',
        'Programming Language :: Python :: 3.5',
        'Topic :: Software Development :: Libraries',
        'Topic :: Software Development :: Libraries :: Python Modules',
        'Topic :: Communications'
    ],
    packages=['wsdiscovery', 'wsdiscovery.actions'],
    setup_requires=['netifaces', 'click'],
    install_requires=['netifaces', 'click'],
    tests_require=['pytest', 'mock'],
    entry_points={
        'console_scripts': ['discover=wsdiscovery.cmdline:discover'],
    })
Exemple #4
0
setup(name='WSDiscovery',
      version='1.1.3.dev0',
      description='WS-Discovery implementation for python',
      long_description=README + "\n\n" + CHANGES,
      long_description_content_type="text/markdown",
      author='Andrei Kopats',
      author_email='*****@*****.**',
      url='https://github.com/andreikop/python-ws-discovery.git',
      classifiers=[
            'Development Status :: 4 - Beta',
            'Environment :: Console',
            'Intended Audience :: Developers',
            'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
            'Operating System :: MacOS :: MacOS X',
            'Operating System :: POSIX :: Linux',
            'Programming Language :: Python :: 2',
            'Programming Language :: Python :: 2.7',
            'Programming Language :: Python :: 3',
            'Programming Language :: Python :: 3.3',
            'Programming Language :: Python :: 3.4',
            'Programming Language :: Python :: 3.5',
            'Topic :: Software Development :: Libraries',
            'Topic :: Software Development :: Libraries :: Python Modules',
            'Topic :: Communications'
      ],
      packages=['wsdiscovery', 'wsdiscovery.actions'],
      setup_requires=['netifaces', 'click'],
      install_requires=['netifaces', 'click'],
      tests_require = ['pytest', 'mock'],
      entry_points = {
         'console_scripts': ['discover=wsdiscovery.cmdline:discover'],
      }
     )