-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
66 lines (57 loc) · 1.73 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
import os
from setuptools import setup, find_packages
def get_version():
with open(
os.path.join(
os.path.dirname(os.path.realpath(__file__)),
"racoon_clip",
"racoon_clip.VERSION",
)
) as f:
return f.readline().strip()
def get_description():
with open("README.md", "r") as fh:
long_description = fh.read()
return long_description
def get_data_files():
data_files = [(".", ["README.md"])]
return data_files
CLASSIFIERS = [
"Environment :: Console",
"Environment :: MacOS X",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Other/Proprietary License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
setup(
name="racoon_clip",
packages=find_packages(),
url="",
python_requires="==3.9.0",
description="Snakemake-powered commandline tool to obtain single-nucleotide crosslinks from i/eCLIP data.",
long_description=get_description(),
long_description_content_type="text/markdown",
version=get_version(),
author="Melina Klostermann",
author_email="melinaklostermann@googlemail.com",
data_files=get_data_files(),
py_modules=["racoon_clip"],
install_requires=[
"snakemake==7.22",
"pyyaml>=6.0",
"Click>=8.1.3",
"pulp==2.7.0"
],
entry_points={
"console_scripts": [
"racoon_clip=racoon_clip.__main__:main"
]
},
include_package_data=True,
)