-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
51 lines (45 loc) · 1.65 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from setuptools import setup, find_packages
import json
from pathlib import Path
with open(str(Path(__file__).parent.joinpath(f'src/pymodaq_plugin_manager/VERSION')), 'r') as fvers:
version = fvers.read().strip()
with open('README_base.md') as fd:
long_description = fd.read()
setupOpts = dict(
name='pymodaq_plugin_manager',
description="Manager and interface to list, install or remove PyMoDAQ's plugins",
long_description=long_description,
license='CECILL B',
url='',
author="Sébastien Weber",
author_email='[email protected]',
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",
], )
setup(
version=version,
packages=find_packages(where='./src'),
package_dir={'': 'src'},
include_package_data=True,
entry_points={'console_scripts': ['plugin_manager=pymodaq_plugin_manager.manager:main',
'write_plugins_doc=pymodaq_plugin_manager.validate:write_plugin_doc']},
install_requires=[
'distlib',
'jsonschema',
'pytablewriter',
'requests',
'yawrap',
'lxml',
'readme_renderer',
],
**setupOpts
)