-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (39 loc) · 1.27 KB
/
Copy pathsetup.py
File metadata and controls
48 lines (39 loc) · 1.27 KB
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
42
43
44
45
46
47
import os
import setuptools
RESDIR="./results/"
GCNINTERPRET="./gcn_interpret_kmers/"
MODELDIR="./saved_models/"
if not os.path.exists(RESDIR):
os.makedirs(RESDIR)
if not os.path.exists(GCNINTERPRET):
os.makedirs(GCNINTERPRET)
if not os.path.exists(MODELDIR):
os.makedirs(MODELDIR)
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
required = ['keras==2.3.1',
'numpy==1.16.1',
'boto3==1.9.239',
'sklearn',
'scipy==1.3.2',
'tqdm==4.38.0',
'matplotlib==3.0.3',
'multiprocess']
setuptools.setup(
name="Nanopore De-novo Modification Inference (NDMI)",
version="0.0.1",
author="Ioannis Anastopoulos",
author_email="ianastop@ucsc.edu",
description="Repository for reproducing results of manuscript",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ioannisa92/Nanopore_modification_inference",
packages=setuptools.find_packages(),
install_requires=required,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)