forked from SunPengChuan/wgdi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 1.02 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
30
31
32
33
34
35
36
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
from setuptools import find_packages, setup
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
required = ['pandas>=1.1.0', 'numpy', 'biopython', 'matplotlib', 'scipy']
setup(
name="wgdi",
version="0.6.5",
author="Pengchuan Sun",
author_email="[email protected]",
description="Whole Genome Duplication Identification",
license="BSD License",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/SunPengChuan/wgdi",
packages=find_packages(),
package_data={'': ['*.conf','*.ini', '*.csv']},
classifiers=[
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'wgdi = wgdi.run:main',
]
},
zip_safe=True,
install_requires=required
)