-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
30 lines (25 loc) · 850 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
27
28
29
30
#!/usr/bin/env python
from subphaser.__version__ import version
from setuptools import setup, find_packages
# from distutils.core import setup
from distutils.extension import Extension
#from Cython.Build import cythonize
with open('README.md') as f:
long_description = f.read()
setup(
name='subphaser',
version=version,
description='subphaser: phase subgenomes of allopolyploidy based on repeatitive kmers',
url='https://github.com/zhangrengang/subphaser',
# download_url='https://github.com/zhangrengang/subphaser/archive/v1.x.tar.gz',
author='Zhang, Ren-Gang and Wang, Zhao-Xuan',
license='GPL-3.0',
python_requires='>=3.6',
packages=find_packages(),
include_package_data=True,
scripts=[],
entry_points={
'console_scripts': ['subphaser = subphaser.__main__:main',
],
},
)