setup.py 892 B

12345678910111213141516171819202122232425
  1. from distutils.core import setup
  2. setup(name='pynsist',
  3. version='0.1',
  4. description='Build Windows installers for Python apps',
  5. author='Thomas Kluyver',
  6. author_email='thomas@kluyver.me.uk',
  7. url='https://github.com/takluyver/pynsis',
  8. packages=['nsist'],
  9. package_data={'nsist': ['template.nsi',
  10. 'python-pubkeys.txt',
  11. 'glossyorb.ico',
  12. ]
  13. },
  14. scripts=['scripts/pynsist'],
  15. classifiers=[
  16. 'Intended Audience :: Developers',
  17. 'License :: OSI Approved :: MIT License',
  18. 'Environment :: Win32 (MS Windows)',
  19. 'Programming Language :: Python :: 3',
  20. 'Topic :: Software Development',
  21. 'Topic :: System :: Installation/Setup',
  22. 'Topic :: System :: Software Distribution',
  23. ]
  24. )