setup.py 980 B

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