Skip to content
Snippets Groups Projects
Select Git revision
  • 934b8df912f1faa2588e886fd38c2a87c507220c
  • main default protected
  • fortran
  • usertypes
  • must-toolcoverage
  • toolcoverage
  • tools
  • must-json
  • merged
  • tools-parallel
  • coll
  • rma
  • dtypes
  • p2p
  • infrastructure-patch-3
  • infrastructure-patch2
  • devel-TJ
  • infrasructure-patch-1
  • devel-ES
  • instructionblock-lists
  • mbi
21 results

README.md

Blame
  • setup.py 383 B
    #!/usr/bin/python
    
    from setuptools import setup
    from epochsdftools import __version__
    
    
    setup(name='epochsdftools',
        version=__version__,
    	author='Stephan Kuschel',
    	author_email='stephan.kuschel@uni-jena.de',
    	description='Toolkit um Daten aus PIC Simulationen zu verarbeiten und darzustellen.',
    	packages=['epochsdftools'],
    	install_requires=['matplotlib', 'numpy', 'scipy']
    	)