-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpyproject.toml
49 lines (44 loc) · 1.05 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "logomaker"
version = "0.8.6"
description = "Package for making Sequence Logos"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{name = "Ammar Tareen and Justin B. Kinney", email = "[email protected]"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"numpy",
"matplotlib",
"pandas"
]
[project.urls]
Documentation = "http://logomaker.readthedocs.io"
Repository = "https://github.com/jbkinney/logomaker"
[tool.hatch.build]
include = [
"logomaker/src/*",
"logomaker/data/*",
"logomaker/jupyter_notebooks/*",
"logomaker/tests/*",
"logomaker/examples/*"
]
[tool.hatch.build.targets.wheel]
packages = ["logomaker"]
[tool.hatch.build.targets.sdist]
packages = ["logomaker"]
include = [
"/logomaker",
"LICENSE",
"README.md"
]