-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 1.26 KB
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
[build-system]
requires = ["setuptools>=77", "wheel", "numpy", "scipy", "cython"]
build-backend = "setuptools.build_meta"
[project]
name = "iced"
requires-python = ">= 3.9"
version = "0.6.0a0.dev0"
dependencies = [
"numpy>=1.16.0",
"scipy>=0.19.0",
]
readme = "README.rst"
description = "ICE normalization"
keywords = ["iced", "hi-c", "chromatin"]
authors = [
{name = "Nelle Varoquaux", email = "nelle.varoquaux@gmail.com"}
]
maintainers = [
{name = "Nelle Varoquaux", email = "nelle.varoquaux@gmail.com"}
]
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Utilities',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS']
[project.scripts]
ice = "iced.scripts.ice:main"
[project.urls]
Homepage = "https://hiclib.github.io/iced/"
Documentation = "https://hiclib.github.io/iced/documentation.html"
Repository = "https://github.com/hiclib/iced.git"
Issues = "https://github.com/hiclib/iced/issues"
Download = "https://github.com/hiclib/iced/releases"
[tool.setuptools]
include-package-data = true