-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
59 lines (49 loc) · 1.63 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
#!/usr/bin/env python3
# coding: utf-8
"""Detect loops (and other patterns) in Hi-C contact maps."""
from setuptools import setup, find_packages
import codecs
CLASSIFIERS = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization",
"Operating System :: OS Independent",
]
name = "chromosight"
MAJOR = 1
MINOR = 6
MAINTENANCE = 3
VERSION = "{}.{}.{}".format(MAJOR, MINOR, MAINTENANCE)
LICENSE = "MIT"
with open("requirements.txt", "r") as f:
REQUIREMENTS = f.read().splitlines()
with open("chromosight/version.py", "w") as f:
f.write("__version__ = '{}'\n".format(VERSION))
with codecs.open("README.md", encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
setup(
name=name,
author="axel.cournac@pasteur.fr",
long_description_content_type="text/markdown",
description=__doc__,
long_description=LONG_DESCRIPTION,
version=VERSION,
license=LICENSE,
classifiers=CLASSIFIERS,
url="https://github.com/koszullab/chromosight",
package_data={"chromosight": ("kernels/*", "cli/logo.txt")},
packages=find_packages(),
python_requires=">=3.6",
install_requires=REQUIREMENTS,
include_package_data=True,
entry_points={
"console_scripts": ["chromosight=chromosight.cli.chromosight:main"]
},
)