-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (26 loc) · 719 Bytes
/
setup.py
File metadata and controls
31 lines (26 loc) · 719 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
29
30
31
#!/usr/bin/env python
from soi.__version__ import version
from setuptools import setup, find_packages
from distutils.extension import Extension
with open('README.md') as f:
long_description = f.read()
setup(
name='soi',
version=version,
description='SOI: identifying orthologous synteny',
url='https://github.com/zhangrengang/soi/',
author='Zhang, Ren-Gang',
license='GPL-3.0',
python_requires='>=3.7',
packages=find_packages(),
include_package_data=True,
scripts=[],
entry_points={
'console_scripts': [
'soi = soi.options:main',
'soi-syn = soi.mcscan:main',
'soi-orth = soi.OrthoFinder:main',
'soi-ctl = soi.creat_ctl:main',
],
},
)