-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 1.1 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
from setuptools import setup, find_packages
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
setup(
name="kdpeak",
version="0.2.0",
author="Dominik Otto",
author_email="dotto@fredhutch.org",
description="A tool to identify genomic peaks based on kernel density estimation.",
long_description=(this_directory / "README.md").read_text(),
long_description_content_type="text/markdown",
url="https://github.com/settylab/kdpeak",
packages=find_packages(),
install_requires=[
"numpy>=1.20.0",
"pandas>=1.3.0",
"KDEpy>=1.0.6",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
python_requires=">=3.7",
entry_points={
"console_scripts": [
"kdpeak=kdpeak.core:main",
],
},
)