Import python modules by their hash.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 regels
583 B

  1. #!/usr/bin/env python
  2. from setuptools import setup
  3. setup(name='casimport',
  4. version='0.1.0',
  5. description='Import python modules via content address.',
  6. author='John-Mark Gurney',
  7. author_email='jmg@funkthat.com',
  8. classifiers=[
  9. 'Development Status :: 3 - Alpha',
  10. 'License :: OSI Approved :: BSD License',
  11. 'Topic :: Security',
  12. # XXX - add
  13. ],
  14. url='https://www.funkthat.com/gitea/jmg/casimport',
  15. packages=[ 'casimport', ],
  16. install_requires=[
  17. 'mock',
  18. ],
  19. extras_require = {
  20. 'dev': [ 'coverage' ],
  21. }
  22. )