forked from gagneurlab/drop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (32 loc) · 1.24 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
import setuptools
import os
with open("README.md", "r") as fh:
long_description = fh.read()
requirements = [
'wbuild>=1.8.0',
'python-dateutil',
'pandoc',
'graphviz',
'pandas>=0.13',
]
extra_files = []
for (path, directories, filenames) in os.walk('drop/'):
directories[:] = [d for d in directories if not d.startswith('.')]
filenames[:] = [f for f in filenames if not f.startswith('.') and not f.endswith('.Rproj')]
for filename in filenames:
extra_files.append(os.path.join('..', path, filename))
setuptools.setup(
name="drop",
version="1.3.3",
author="Vicente A. Yépez, Michaela Müller, Nicholas H. Smith, Daniela Klaproth-Andrade, Luise Schuller, Ines Scheller, Christian Mertes <mertes@in.tum.de>, Julien Gagneur <gagneur@in.tum.de>",
author_email="yepez@in.tum.de",
description="Detection of RNA Outlier Pipeline",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/gagneurlab/drop",
packages=setuptools.find_packages(include=["drop", "drop.*"]),
entry_points={'console_scripts': ['drop=drop.cli:main']},
package_data={'drop': extra_files},
include_package_data=True,
install_requires=requirements,
)