setup.py 574 B

123456789101112131415161718192021222324
  1. from setuptools import setup, find_packages
  2. with open('README.md') as f:
  3. README = f.read()
  4. setup(
  5. name='epilepsy-potassium-calculation',
  6. install_requires=[
  7. 'matplotlib',
  8. 'scipy',
  9. 'numpy>=1.15',
  10. 'numba',
  11. 'pyyaml',
  12. ],
  13. packages=find_packages(),
  14. version='0.0.1',
  15. author='',
  16. author_email='vozdhb@gmail.com',
  17. description='',
  18. long_description=README,
  19. long_description_content_type='text/markdown',
  20. url='https://gin.g-node.org/asanin/epilepsy-potassium-calculation.git',
  21. classifiers=[]
  22. )