Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 36 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| #!/usr/bin/env python | |
| import sys | |
| from os import walk, path | |
| from setuptools import setup, find_packages | |
| VERSION = '0.11.0' | |
| ENTRY_POINTS = { | |
| 'orange3.addon': ( | |
| 'prototypes = orangecontrib.prototypes', | |
| ), | |
| # Entry point used to specify packages containing widgets. | |
| 'orange.widgets': ( | |
| # Syntax: category name = path.to.package.containing.widgets | |
| # Widget category specification can be seen in | |
| # orangecontrib/datafusion/widgets/__init__.py | |
| 'Prototypes = orangecontrib.prototypes.widgets', | |
| ), | |
| # Register widget help | |
| "orange.canvas.help": ( | |
| 'html-index = orangecontrib.prototypes.widgets:WIDGET_HELP_PATH', | |
| ), | |
| } | |
| DATA_FILES = [ | |
| # Data files that will be installed outside site-packages folder | |
| ] | |
| def include_documentation(local_dir, install_dir): | |
| global DATA_FILES | |
| if 'bdist_wheel' in sys.argv and not path.exists(local_dir): | |
| print("Directory '{}' does not exist. " | |
| "Please build documentation before running bdist_wheel." | |
| .format(path.abspath(local_dir))) | |
| sys.exit(0) | |
| doc_files = [] | |
| for dirpath, dirs, files in walk(local_dir): | |
| doc_files.append((dirpath.replace(local_dir, install_dir), | |
| [path.join(dirpath, f) for f in files])) | |
| DATA_FILES.extend(doc_files) | |
| if __name__ == '__main__': | |
| include_documentation('doc/_build/htmlhelp', 'help/orange3-prototypes') | |
| setup( | |
| name="Orange3-Prototypes", | |
| description="Prototype Orange widgets β only for the brave.", | |
| version=VERSION, | |
| author='Bioinformatics Laboratory, FRI UL', | |
| author_email='contact@orange.biolab.si', | |
| url='https://github.com/biolab/orange3-prototypes', | |
| keywords=( | |
| 'orange3 add-on', | |
| ), | |
| packages=find_packages(), | |
| package_data={ | |
| "orangecontrib.prototypes.widgets": ["icons/*.svg"], | |
| "orangecontrib.prototypes.widgets.utils": ["_plotly/*"], | |
| "orangecontrib.prototypes.widgets": ["_owparallelcoordiantes/*"], | |
| "orangecontrib.prototypes.widgets": ["data/*"] | |
| }, | |
| install_requires=[ | |
| 'Orange3', | |
| 'numpy', | |
| 'scipy', | |
| 'scikit-learn', | |
| 'pyqtgraph', | |
| 'AnyQt>=0.0.8', | |
| 'serverfiles', | |
| # For OWIPythonConnector | |
| 'ipython', | |
| 'pandas', | |
| 'joblib', # For SignificantGoups | |
| 'BeautifulSoup4', # for OW1Ka | |
| 'plotly>=2.0.8', # for OWParallelCoordinates | |
| ], | |
| extras_require={ | |
| ':python_version<"3.5"': [ | |
| "typing" | |
| ] | |
| }, | |
| entry_points=ENTRY_POINTS, | |
| namespace_packages=['orangecontrib'], | |
| include_package_data=True, | |
| zip_safe=False, | |
| data_files=DATA_FILES, | |
| ) |