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.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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.6.0',
  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. 'seaborn',
  43. 'numpy',
  44. 'pyqt5',
  45. 'pyyaml',
  46. 'ruamel.yaml',
  47. 'pandas',
  48. 'pyqt-distutils',
  49. 'cmocean',
  50. 'multiprocessing',
  51. 'itertools',
  52. 'pyLemma >= 0.4.0'
  53. ],
  54. packages=['akvo', 'akvo.tressel', 'akvo.gui'],
  55. license='GPL 4.0',
  56. entry_points = {
  57. 'console_scripts': [
  58. 'akvo = akvo.gui.akvoGUI:main',
  59. 'akvoK0 = akvo.tressel.calcAkvoKernel:main',
  60. 'akvoQT = akvo.tressel.invertTA:main',
  61. ],
  62. },
  63. #cmdclass = cmdclass,
  64. # for forced build of pyuic
  65. cmdclass={
  66. 'build_ui': build_ui,
  67. 'build_py': custom_build_py,
  68. },
  69. # Mechanism to include auxiliary files
  70. # commenting out may be necessary?
  71. #include_package_data=True,
  72. package_data={
  73. 'akvo.gui': ['*.png'],
  74. 'akvo.gui': ['*.ui'],
  75. '': ['*.png'],
  76. },
  77. classifiers=[
  78. "Programming Language :: Python :: 3",
  79. "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
  80. "Operating System :: OS Independent",
  81. ],
  82. )