Import python modules by their hash.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

25 wiersze
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. )