-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
29 lines (28 loc) · 1.04 KB
/
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
27
28
29
from setuptools import setup, find_packages
from mifish.core import version
setup(name='mifish',
version=version.get(),
description="the command line version of MiFish pipeline. It can also be used with any other eDNA meta-barcoding primers",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: Unix',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
keywords='mifish',
author='Tao Zhu',
author_email='[email protected]',
url='http://mitofish.aori.u-tokyo.ac.jp/mifish',
license='GPLv3+',
packages=find_packages(),
include_package_data=True,
python_requires='>=3.8',
entry_points={
'console_scripts': [
'mifish = mifish.cmd.mifish:main',
]
},
)