-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (78 loc) · 2.3 KB
/
pyproject.toml
File metadata and controls
94 lines (78 loc) · 2.3 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pycmplot"
version = "0.2.6"
description = "Multi-track circular and linear Manhattan plot generation for GWAS summary statistics"
readme = "README.md"
license = "MIT"
license-files = ["LICEN[CS]E*"]
authors = [{ name = "Kevin Esoh", email = "kesohku1@jh.edu" }]
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"pandas>=1.5",
"numpy>=1.23",
"matplotlib>=3.6",
"pillow>=9.0",
"pycirclize>=0.6",
"natsort>=8.0",
"adjustText>=0.8",
"pyliftover>=0.4",
]
[project.optional-dependencies]
dev = ["pytest", "black", "ruff", "towncrier", "sphinx"]
[project.urls]
Homepage = "https://github.com/esohkevin/pycmplot"
Issues = "https://github.com/esohkevin/pycmplot/issues"
Docs = "https://pycmplot.readthedocs.io/en/latest/"
[tool.setuptools.package-data]
pycmplot = ["data/*"]
[project.scripts]
pycmplot = "pycmplot._core:main"
[tool.setuptools.packages.find]
where = ["."]
exclude = [
"dist*", "changelog.d*", "build-pypi-package.md",
"pycmplot_python_api.ipynb", "mit-license.txt",
"pycmplot_docs", "docs", "CHANGELOG.rst", "pycmplot_benchmark.ipynb",
]
[tool.towncrier]
package = "pycmplot"
package_dir = "pycmplot"
filename = "CHANGELOG.rst"
directory = "changelog.d"
title_format = "Version {version} ({project_date})"
issue_format = "`#{issue} <https://github.com/esohkevin/pycmplot/issues/{issue}>`_"
[[tool.towncrier.type]]
directory = "added"
name = "Added"
showcontent = true
[[tool.towncrier.type]]
directory = "changed"
name = "Changed"
showcontent = true
[[tool.towncrier.type]]
directory = "fixed"
name = "Fixed"
showcontent = true
[[tool.towncrier.type]]
directory = "deprecated"
name = "Deprecated"
showcontent = true
[[tool.towncrier.type]]
directory = "removed"
name = "Removed"
showcontent = true