-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
39 lines (35 loc) · 1.21 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
[build-system]
requires = ["setuptools>=1.1", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cgatcore"
version = "0.6.17"
description = "cgatcore: 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 :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS"
]
readme = "README.md"
[project.urls]
Documentation = "https://github.com/cgat-developers/cgat-core"
Source = "https://github.com/cgat-developers/cgat-core"
Tracker = "https://github.com/cgat-developers/cgat-core/issues"
Homepage = "https://github.com/cgat-developers/cgat-core"
[tool.setuptools.packages.find]
where = ["."]
include = ["cgatcore", "cgatcore.pipeline", "cgatcore.remote"]
[project.optional-dependencies]
testing = ["pytest"] # include your testing dependencies