Import python modules by their hash.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

25 строки
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. )