-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (39 loc) · 1.3 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
37
38
39
40
41
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="deepaccess",
version="0.1.2",
author="Jennifer Hammelman",
author_email="[email protected]",
description="A package for training and interpreting an "
+"ensemble of neural networks for chromatin accessibility",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/gifford-lab/deepaccess-package",
packages=setuptools.find_packages(),
project_urls={
"Bug Tracker": "https://github.com/gifford-lab/deepaccess-package/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"deepaccess": "deepaccess"},
python_requires=">=3.6",
install_requires=[
"tensorflow >= 2.4",
"keras >= 2.4.3",
"scipy >= 1.6.2",
"matplotlib >=3.3.3",
"numpy >=1.19.0",
"scikit-learn >= 0.24.1",
],
entry_points={
"console_scripts": ["deepaccess=deepaccess.deepaccess:main"]
},
include_package_data=True,
package_data={'': ['train/homer_matrix.npy',
'interpret/data/*']}
)