-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 703 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(
name="mummer-idotplot",
version="0.1.3",
description="Generate interactive dotplot from MUMmer4 output using plotly",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/ryought/mummer-idotplot",
author="ryought",
author_email="ryonakabayashi@gmail.com",
license="MIT",
packages=[
"mummer_idotplot",
],
install_requires=["plotly"],
entry_points={
"console_scripts": [
"mummer-idotplot = mummer_idotplot.main:main"
]
}
)