-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 1.2 KB
/
setup.py
File metadata and controls
39 lines (37 loc) · 1.2 KB
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
from setuptools import setup, find_packages
def get_version():
return '0.5.0'
setup(
name='biovis-pybased-plugins',
version=get_version(),
description='A set of Python-based plugins for biovis-report to draw interactive plots.',
keywords='biovis-plugin',
url='https://github.com/biovis-report/biovis-pybased-plugins',
author='Jingcheng Yang',
author_email='yjcyxky@163.com',
license='MIT',
python_requires='>=3.7',
include_package_data=True,
install_requires=[
'biovis-report~=0.5',
'multiqc~=1.11'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
],
packages=find_packages(),
entry_points={
'biovis.plugins': [
'multiqc-py = multiqc.multiqc:MultiqcPlugin'
]
}
)