-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (24 loc) · 838 Bytes
/
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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="metmap",
version="1.0.4",
author="Lasse Ebdrup Pedersen",
author_email="[email protected]",
description="A tool for generating DNA MTase motif testing sequences",
long_description=long_description,
long_description_content_type="text/markdown",
scripts=['bin/run_metmap.py', ],
url="https://github.com/cfblaeb/metmap",
packages=['metmap'],
install_requires=['biopython'],
python_requires='>=3.6',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: Free for non-commercial use",
],
)