-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
53 lines (49 loc) · 1.41 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
[project]
name = "OGU"
version = "1.999"
description = "Organelle Genome Utilities"
keywords = ['plastid', 'mitochondria', 'organelle genome', 'analysis',
'Bioinformatics']
authors = [
{ name = "Ping Wu", email = "[email protected]" },
]
maintainers = [
{ name = "Ping Wu", email = "[email protected]" },
]
dependencies = [
"biopython==1.82",
"certifi>=2024.6.2",
"colorama>=0.4.6",
"coloredlogs>=10.0",
"matplotlib>=3.0.0",
"numpy<2.0",
"primer3-py==2.0.2",
"pandas>=2.1.4",
"pycirclize>=1.7.1",
]
requires-python = ">=3.9"
readme = "README.md"
license = { text = "AGPL-3.0-or-later" }
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering :: Bio-Informatics'
]
[project.scripts]
ogu = 'OGU:main'
OGU = 'OGU:main'
update_db = 'OGU.utils:init_lineage'
[project.urls]
'Homepage' = 'https://github.com/wpwupingwp/OGU'
'Bug Tracker' = 'https://github.com/wpwupingwp/OGU/issues'
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/OGU"]