-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 901 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 901 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
32
#!/usr/bin/env python
'''Package installation script.'''
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="asep-pkg-zzhua",
version="0.1.0",
author="Zhenhua Zhang",
author_email="zhenhua.zhang217@gmail.com",
description="A tool to predict allele-specific expression",
long_description=long_description,
usrl="https://github.com/zhenhua-zhang/asep",
packages=["asep"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"scipy == 1.1.0",
"numpy == 1.15.3",
"pandas == 0.23.4",
"joblib == 0.12.5",
"matplotlib == 3.0.0",
"scikit-learn == 0.20.0",
"imbalanced-learn == 0.4.0",
],
python_requires=">=3.5"
)