Skip to content
Snippets Groups Projects
Select Git revision
  • f360d1744dba89032d2b4083f331ec01c2be3267
  • main default protected
  • py2-backport
  • tags/release-0.5_final
  • tags/release-0.4_final
  • tags/release-0.4_r2
  • tags/release-0.3
7 results

setup.py

Blame
  • setup.py 843 B
    from setuptools import setup,find_packages
    import fastentrypoints
    
    with open('README.rst') as f:
        long_description = f.read()
    
    VERSION = "0.1"
    
    setup(
        name='xaal.fuse',
        version=VERSION,
        license='GPL License',
        author='Jerome Kerdreux',
        author_email='Jerome.Kerdreux@imt-atlantique.fr',
        #url='',
        description=('xAAL Fuse filesystem'),
        long_description=long_description,
        classifiers=[
            'Programming Language :: Python',
            'Topic :: Software Development :: Libraries :: Python Modules',
        ],
        keywords=['xaal', 'tools'],
        platforms='any',
        packages=find_packages(),
        include_package_data=True,
    
      entry_points = {
          'console_scripts': [
              'xaal-mount = xaal.fuse.mount:main',
          ],
        },
        
        install_requires=[
            'xaal.lib',
            'fuse-python'
        ]
    )