setup.py 592 B

123456789101112131415
  1. from distutils.core import setup
  2. setup(
  3. name = 'PyOrgMode',
  4. packages = ['PyOrgMode'], # this must be the same as the name above
  5. version = '0.1',
  6. description = 'Library to interact with org-mode from python',
  7. author = 'Jonathan BISSON',
  8. author_email = 'gonvaled@gonvaled.com', # I do not know the email address of the author
  9. url = 'https://github.com/gonvaled/PyOrgMode', # use the URL to the github repo
  10. download_url = 'https://github.com/gonvaled/PyOrgMode/tarball/0.03b', # I'll explain this in a second
  11. keywords = ['org-mode'],
  12. classifiers = [],
  13. )