-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (24 loc) · 725 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (24 loc) · 725 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
from os import path
from setuptools import setup, find_packages
VERSION = '1.0'
DESCRIPTION = 'Copy number profiling VAE'
directory = path.dirname(path.abspath(__file__))
with open(path.join(directory, 'requirements.txt')) as f:
required = f.read().splitlines()
setup(
name = 'copyVAE',
version = VERSION,
description = DESCRIPTION,
url = 'https://github.com/mandichen/copyVAE',
author = 'Chen & Kurt & Bonet',
packages = find_packages(include = ['copyvae', 'copyvae.*']),
entry_points = {
'console_scripts': [
'copyvae = copyvae.pipeline:main',
],
},
install_requires = required,
extras_require = {
'interactive': ['matplotlib'],
}
)