-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.31 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
50
51
52
53
54
# pyproject.toml
[build-system]
requires = [
"setuptools>=64.0",
"wheel",
"Cython>=0.29.35",
"numpy",
"pysam",
]
build-backend = "setuptools.build_meta"
[project]
name = "cgat"
version = "0.7.10"
description = "cgat : the Computational Genomics Analysis Toolkit"
authors = [
{name = "Adam Cribbs", email = "[email protected]"},
]
license = { text = "MIT" }
keywords = ["computational genomics"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"Cython>=0.29.35",
"numpy",
"pysam",
]
[tool.setuptools]
packages = { find = { where = ["."] } }
include-package-data = true
[project.scripts]
cgat = "cgat.cgat:main"
[tool.setuptools.package-data]
cgat = ["*.txt", "*.yaml", "*.yml", "*.h"]
[project.urls]
Source = "https://github.com/cgat-developers/cgat-apps/"
Bug_Tracker = "https://github.com/cgat-developers/cgat-apps/issues/"
Documentation = "https://cgat-developers.github.io/cgat-core/"