forked from gagneurlab/drop
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (34 loc) · 1.23 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
38
import setuptools
import os
with open("README.md", "r") as fh:
long_description = fh.read()
requirements = [
#'wbuild @ git+https://github.com/gagneurlab/wBuild.git',
'wbuild>=1.7.1',
'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('.') or d == 'Data')]
filenames[:] = [f for f in filenames if
not (f.startswith('.') or f.endswith('.Rproj') or f.endswith('.py'))]
for filename in filenames:
extra_files.append(os.path.join('..', path, filename))
setuptools.setup(
name="drop",
version="1.0.0",
author="Michaela Müller, Daniela Andrade Salazar, Vicente Yepez",
author_email="mumichae@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,
)