-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from PyMoDAQ/feature/common_setup
using common setup.py file from pymodaq
- Loading branch information
Showing
1 changed file
with
2 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,4 @@ | ||
from setuptools import setup, find_packages | ||
import toml | ||
|
||
config = toml.load('./plugin_info.toml') | ||
SHORT_PLUGIN_NAME = config['plugin-info']['SHORT_PLUGIN_NAME'] | ||
PLUGIN_NAME = f"pymodaq_plugins_{config['plugin-info']['SHORT_PLUGIN_NAME']}" | ||
|
||
|
||
from pymodaq.resources.setup_plugin import setup | ||
from pathlib import Path | ||
|
||
with open(str(Path(__file__).parent.joinpath(f'src/{PLUGIN_NAME}/resources/VERSION')), 'r') as fvers: | ||
version = fvers.read().strip() | ||
|
||
|
||
with open('README.rst') as fd: | ||
long_description = fd.read() | ||
|
||
setupOpts = dict( | ||
name=PLUGIN_NAME, | ||
description=config['plugin-info']['description'], | ||
long_description=long_description, | ||
license=config['plugin-info']['license'], | ||
url=config['plugin-info']['package-url'], | ||
author=config['plugin-info']['author'], | ||
author_email=config['plugin-info']['author-email'], | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Other Environment", | ||
"Intended Audience :: Science/Research", | ||
"Topic :: Scientific/Engineering :: Human Machine Interfaces", | ||
"Topic :: Scientific/Engineering :: Visualization", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Topic :: Software Development :: User Interfaces", | ||
], ) | ||
|
||
|
||
entrypoints = {} | ||
if 'features' in config: | ||
if config['features'].get('instruments', False): | ||
entrypoints['pymodaq.instruments'] = f'{SHORT_PLUGIN_NAME} = {PLUGIN_NAME}' | ||
if config['features'].get('extensions', False): | ||
entrypoints['pymodaq.extensions'] = f'{SHORT_PLUGIN_NAME} = {PLUGIN_NAME}' | ||
if config['features'].get('pid_models', False): | ||
entrypoints['pymodaq.pid_models'] = f'{SHORT_PLUGIN_NAME} = {PLUGIN_NAME}' | ||
if config['features'].get('h5exporters', False): | ||
entrypoints['pymodaq.h5exporters'] = f'{SHORT_PLUGIN_NAME} = {PLUGIN_NAME}' | ||
if config['features'].get('scanners', False): | ||
entrypoints['pymodaq.scanners'] = f'{SHORT_PLUGIN_NAME} = {PLUGIN_NAME}' | ||
else: | ||
entrypoints['pymodaq.instruments'] = f'{SHORT_PLUGIN_NAME} = {PLUGIN_NAME}' | ||
|
||
setup( | ||
version=version, | ||
packages=find_packages(where='./src'), | ||
package_dir={'': 'src'}, | ||
include_package_data=True, | ||
entry_points=entrypoints, | ||
install_requires=['toml', ]+config['plugin-install']['packages-required'], | ||
**setupOpts | ||
) | ||
setup(Path(__file__).parent) |