-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
69 lines (63 loc) · 2.35 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
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
66
67
68
69
import os
from setuptools import setup, find_packages
import curare.metadata
# Get the long description from the README file
setup_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(setup_dir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
# Thanks to Sandy Chapman at Stackoverflow
def package_files(directory):
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join('..', path, filename))
return paths
extra_files_report = package_files('curare/report')
extra_files_snakefiles = package_files('curare/snakefiles')
setup(
name='Curare',
version=curare.metadata.__version__,
description='Curare: A Customizable and Reproducible Analysis Pipeline for RNA-Seq Experiments',
keywords=['bioinformatics', 'rna-seq', 'differential-gene-expression', 'transcriptomics'],
long_description=long_description,
long_description_content_type='text/markdown',
license='GPLv3',
author='Patrick Blumenkamp',
author_email='patrick.blumenkamp@computational.bio.uni-giessen.de',
url='https://github.com/pblumenkamp/Curare',
python_requires='>=3.10',
packages=find_packages(include=['curare', 'curare.*']),
package_data={
"": extra_files_snakefiles + extra_files_report
},
include_package_data=True,
zip_safe=False,
install_requires=[
'PyYAML == 6.0.1',
'docopt == 0.6.2',
'snakemake == 7.32.3',
'progressbar2 == 4.3.2',
'biopython == 1.83'
],
entry_points={
'console_scripts': [
'curare=curare.curare:main',
'curare_wizard=curare.curare_wizard:main'
]
},
classifiers=[
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.10',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Natural Language :: English'
],
project_urls={
'Bug Reports': 'https://https://github.com/pblumenkamp/Curare/issues',
'Source': 'https://github.com/pblumenkamp/Curare'
},
)