-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (23 loc) · 772 Bytes
/
setup.py
File metadata and controls
30 lines (23 loc) · 772 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
"""
setup.py
Setup script for cellh5.py
This script installs only the library
>>>import cellh5
"""
__author__ = 'rudolf.hoefler@gmail.com'
import sys
sys.path.append('pysrc')
from distutils.core import setup
import cellh5
setup(name='cellh5',
version = cellh5.version,
description = 'module for easy acces of cellh5 files',
author = 'Christoph Sommer, Rudolf Hoefler',
author_email = 'christoph.sommer@imba.oeaw.ac.at, rudolf.hoefler@gmail.com',
license = 'LGPL',
url = 'http://cellh5.org',
package_dir = {'hmm_wrapper': 'pysrc/cellh5/hmm_wrapper', '': 'pysrc'},
py_modules = ['cellh5.cellh5', 'cellh5.cellh5write'],
packages=['hmm_wrapper'],
package_data={'hmm_wrapper': ['hmm_constraint.xsd']},
)