setup.py 544 B

1234567891011121314151617
  1. import os
  2. from setuptools import setup
  3. setup(
  4. name = "zeitdownload",
  5. version = "1.1.0",
  6. author = "Christoph Stelz",
  7. author_email = "mail+python@ch-st.de",
  8. description = "Download the digital version of the newspaper \"Die Zeit\"",
  9. url = "https://github.com/stelzch/zeitdownloader",
  10. scripts = ['zeitdownload.py'],
  11. classifiers = [
  12. "Environment :: Console",
  13. "Topic :: Internet :: WWW/HTTP",
  14. "Intended Audience :: End Users/Desktop",
  15. ],
  16. )