Skip to content

Commit d681d3a

Browse files
committed
added pygnuplot to setup
1 parent 112cb72 commit d681d3a

File tree

1 file changed

+16
-12
lines changed

1 file changed

+16
-12
lines changed

setup.py

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,22 @@
1818
'matplotlib',
1919
'openpyxl',
2020
'tqdm'],
21-
22-
classifiers=[
23-
'Development Status :: 3 - Alpha',
24-
'Intended Audience :: Healthcare Industry',
25-
'Intended Audience :: Education',
26-
'Intended Audience :: Science/Research',
27-
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
28-
'Programming Language :: Python :: 3.8',
29-
'Topic :: Software Development :: Libraries',
30-
'Topic :: Software Development :: Libraries :: Python Modules',
31-
'Topic :: Scientific/Engineering :: Bio-Informatics'
32-
],
21+
22+
extras_require = {'full' : ['pygnuplot']},
23+
24+
optional = True,
25+
26+
classifiers=[
27+
'Development Status :: 3 - Alpha',
28+
'Intended Audience :: Healthcare Industry',
29+
'Intended Audience :: Education',
30+
'Intended Audience :: Science/Research',
31+
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
32+
'Programming Language :: Python :: 3.8',
33+
'Topic :: Software Development :: Libraries',
34+
'Topic :: Software Development :: Libraries :: Python Modules',
35+
'Topic :: Scientific/Engineering :: Bio-Informatics'
36+
],
3337

3438
packages=find_packages(),
3539
include_package_data=True)

0 commit comments

Comments
 (0)