This repository was archived by the owner on Jul 16, 2020. It is now read-only.
forked from ggirelli/iFISH-probe-design
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
65 lines (61 loc) · 1.71 KB
/
Copy pathsetup.py
File metadata and controls
65 lines (61 loc) · 1.71 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# Get the long description from the README file
with open('README.md', "r") as f:
long_description = f.read()
setup(name='ifpd',
version='2.0.3.post2',
description='''An iFISH probe design pipeline, with web interface included.''',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/ggirelli/iFISH-Probe-Design',
author='Gabriele Girelli',
author_email='gabriele.girelli@scilifelab.se',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6'
],
keywords='biology cell DNA RNA FISH fluorescence hybridization bioimaging genome',
packages=["ifpd", "ifpd.sections", "ifpd.sections.probe_design"],
install_requires=[
"bottle>=0.12.13",
'ggc>=0.0.3',
'joblib>=0.11',
"matplotlib>=3.0.0",
"numpy>=1.14.2",
"pandas>=0.22.0",
"paste>=2.0.3",
"scipy>=1.0.0"
],
scripts=[
"bin/ifpd_mkdb",
"bin/ifpd_dbchk",
"bin/ifpd_query_probe",
"bin/ifpd_query_set",
"bin/ifpd_serve"
],
package_data={
'ifpd': [
'interface/css/bootstrap.css',
'interface/css/*',
'interface/fonts/*',
'interface/images/*',
'interface/js/*',
'interface/views/*'
],
'ifpd.sections.probe_design': [
'css/*', 'documents/*', 'views/*']
},
test_suite="nose.collector",
tests_require=["nose"],
)