setup.py 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. from setuptools import setup, find_packages
  2. setup(
  3. name='PyWebIO',
  4. version='0.0.2',
  5. description=u'Make your python interactive script be a web service.',
  6. url='https://github.com/wang0618/pywebio',
  7. author='WangWeimin',
  8. author_email='wang0.618@qq.com',
  9. license='MIT',
  10. packages=find_packages(),
  11. package_data={
  12. # data files need to be listed both here (which determines what gets
  13. # installed) and in MANIFEST.in (which determines what gets included
  14. # in the sdist tarball)
  15. "pywebio": [
  16. "html/codemirror/material-ocean.css",
  17. "html/codemirror/darcula.css",
  18. "html/codemirror/active-line.js",
  19. "html/codemirror/matchbrackets.js",
  20. "html/codemirror/loadmode.js",
  21. "html/codemirror/nginx.js",
  22. "html/codemirror/python.js",
  23. "html/index.html",
  24. "html/css/mditor.min.css",
  25. "html/css/mditor.min.css.map",
  26. "html/css/codemirror.css",
  27. "html/css/mditor.css.map",
  28. "html/css/mditor.css",
  29. "html/css/app.css",
  30. "html/js/FileSaver.min.js",
  31. "html/js/mditor.min.js",
  32. "html/js/codemirror.js",
  33. "html/js/mustache.min.js",
  34. "html/js/form.js",
  35. ],
  36. },
  37. classifiers=[
  38. "Programming Language :: Python :: 3",
  39. "Programming Language :: Python :: 3.5",
  40. "Programming Language :: Python :: 3.6",
  41. "Programming Language :: Python :: 3.7",
  42. ],
  43. install_requires=[
  44. 'tornado>=4.2.0',
  45. ]
  46. )