-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 835 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 835 Bytes
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
#!/usr/bin/env python
from setuptools import find_packages, setup
from mutmap.__init__ import __version__
setup(name='mutmap',
version='{}'.format(__version__),
description='MutMap: pipeline to identify causative mutations responsible for a phenotype',
author='Yu Sugihara',
author_email='sugihara.yu.85s@kyoto-u.jp',
url='https://github.com/YuSugihara/MutMap',
license='GPL',
packages=find_packages(exclude=['test', 'docs']),
python_requires='>=3.5',
install_requires=[
'matplotlib',
'numpy',
'pandas',
],
extras_require={
'plot-style': ['seaborn'],
},
entry_points={'console_scripts': [
'mutmap = mutmap.mutmap:main',
'mutplot = mutmap.mutplot:main',
]
}
)