Surface NMR processing and inversion GUI
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.

setup.py 2.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. #!/usr/bin/env python
  2. # Requires PyQt5 and compiltion of GUI files via pyuic
  3. from setuptools import setup, Extension
  4. from setuptools.command.build_py import build_py
  5. try:
  6. from pyqt_distutils.build_ui import build_ui
  7. except ImportError:
  8. print("Please install pyqt_distutils")
  9. print( "(sudo) pip(3) install pyqt-distutils")
  10. exit()
  11. class custom_build_py(build_py):
  12. def run(self):
  13. self.run_command('build_ui')
  14. build_py.run(self)
  15. with open("README.md", "r") as fh:
  16. long_description = fh.read()
  17. setup(name='Akvo',
  18. version='1.3.4',
  19. python_requires='>3.7.0', # due to pyLemma
  20. description='Surface nuclear magnetic resonance workbench',
  21. long_description=long_description,
  22. long_description_content_type='text/markdown',
  23. author='Trevor P. Irons',
  24. author_email='Trevor.Irons@lemmasoftware.org',
  25. url='https://akvo.lemmasoftware.org/',
  26. #setup_requires=['PyQt5'],
  27. setup_requires=[
  28. # Setuptools 18.0 properly handles Cython extensions.
  29. #'PyQt',
  30. 'pyqt_distutils',
  31. 'PyQt5',
  32. 'setuptools>=18.0',
  33. ],
  34. # ext_modules = cythonise("akvo/tressel/*.pyx"),
  35. # build_requires=['cython'],
  36. install_requires=[
  37. # 'cython',
  38. # 'rpy2',
  39. 'matplotlib',
  40. 'scipy',
  41. 'padasip',
  42. 'numpy',
  43. 'pyqt5',
  44. 'pyyaml',
  45. 'ruamel.yaml',
  46. 'pandas',
  47. 'pyqt-distutils',
  48. 'cmocean',
  49. 'pyLemma >= 0.0.9'
  50. ],
  51. packages=['akvo', 'akvo.tressel', 'akvo.gui'],
  52. license=['GPL 4.0'],
  53. entry_points = {
  54. 'console_scripts': [
  55. 'akvo = akvo.gui.akvoGUI:main',
  56. 'akvoK0 = akvo.tressel.calcAkvoKernel:main',
  57. ],
  58. },
  59. #cmdclass = cmdclass,
  60. # for forced build of pyuic
  61. cmdclass={
  62. 'build_ui': build_ui,
  63. 'build_py': custom_build_py,
  64. },
  65. # Mechanism to include auxiliary files
  66. include_package_data=True,
  67. package_data={
  68. 'akvo.gui': ['*.png'],
  69. 'akvo.gui': ['*.ui']
  70. },
  71. classifiers=[
  72. "Programming Language :: Python :: 3",
  73. "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
  74. "Operating System :: OS Independent",
  75. ],
  76. )