-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
27 lines (24 loc) · 891 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
import setuptools
#with open("README.md", "r") as fh:
# long_description = fh.read()
setuptools.setup(
name='bcfr',
version='1.0',
scripts=['bcfr'] ,
author="Zhongmin Han",
author_email="hanzm_vp@163.com",
description="Bin map constructer for RILs",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/yxrose/bcfr",
packages=setuptools.find_packages(),
py_modules=['break_point', 'divbin', 'flow_across_df', 'haplotype_info_indv', 'implot', 'opdin_mc', 'df2ss', 'exgt', 'fmb', 'ibd_constraint', 'indv_hap_plot', 'maxparsi_mc', 'retrench'],
install_requires=[
'click','pandas','numpy','matplotlib'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Linux",
],
)