-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
48 lines (44 loc) · 1.43 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
[build-system]
requires = [
"setuptools >= 61",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "mashing-pumpkins"
version = "0.3.1"
description = "Hash sketches of sequences"
readme = "README.md"
requires-python = ">3.8"
license = { text = "MIT + BSD-2-Clause (xxHash)" }
authors = [{ name = "Laurent Gautier", email = "[email protected]" }]
classifiers = [
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
"License :: OSI Approved :: BSD-2-Clause",
'Operating System :: POSIX :: Linux',
'Programming Language :: C++',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering',
]
dependencies = [
]
[project.optional-dependencies]
test = ["pytest", "coverage", "pytest-cov"]
[project.urls]
Homepage = "https://lgautier.github.io/mashing-pumpkins"
Documentation = "https://lgautier.github.io/mashing-pumpkins/version/master/html/index.html"
Source = "https://github.com/lgautier/mashing-pumpkins"
Tracker = "https://github.com/lgautier/mashing-pumpkins/issue"
[tool.setuptools]
packages = [
"mashingpumpkins",
"mashingpumpkins.tests",
]
include-package-data = false
license-files = ["LICENSE", "LICENSE-xxHash"]