12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- #!/usr/bin/env python
-
- # Requires PyQt5 and compiltion of GUI files via pyuic
- from setuptools import setup, Extension
- from setuptools.command.build_py import build_py
-
- try:
- from pyqt_distutils.build_ui import build_ui
- except:
- print("Please install pyqt_distutils")
- print( "(sudo) pip(3) install pyqt-distutils")
- exit()
-
- class custom_build_py(build_py):
- def run(self):
- self.run_command('build_ui')
- build_py.run(self)
-
-
- with open("README.md", "r") as fh:
- long_description = fh.read()
-
- setup(name='Akvo',
- version='1.2.3',
- description='Surface nuclear magnetic resonance workbench',
- long_description=long_description,
- long_description_content_type='text/markdown',
- author='Trevor P. Irons',
- author_email='Trevor.Irons@lemmasoftware.org',
- url='https://akvo.lemmasoftware.org/',
- #setup_requires=['PyQt5'],
- setup_requires=[
- # Setuptools 18.0 properly handles Cython extensions.
- #'PyQt',
- 'pyqt_distutils',
- 'PyQt5',
- 'setuptools>=18.0',
- ],
- # ext_modules = cythonise("akvo/tressel/*.pyx"),
- # build_requires=['cython'],
- install_requires=[
- # 'cython',
- # 'rpy2',
- 'matplotlib',
- 'scipy',
- 'numpy',
- 'pyqt5',
- 'pyyaml',
- 'pandas',
- 'pyqt-distutils',
- 'cmocean'
- ],
- packages=['akvo', 'akvo.tressel', 'akvo.gui','akvo.lemma'],
- license=['GPL 4.0'],
- entry_points = {
- 'console_scripts': [
- 'akvo = akvo.gui.akvoGUI:main',
- ],
- },
- #cmdclass = cmdclass,
- # for forced build of pyuic
- cmdclass={
- 'build_ui': build_ui,
- 'build_py': custom_build_py,
- },
- # Mechanism to include auxiliary files
- include_package_data=True,
- package_data={
- 'akvo.gui': ['*.png'], #All .r files
- 'akvo.lemma': ['pyLemmaCore.so']
- },
- classifiers=[
- "Programming Language :: Python :: 3",
- "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
- "Operating System :: OS Independent",
- ],
- )
-
|