-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 813 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (37 loc) · 813 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "genmine"
version = "1.4.2"
description = "GenBank data miner for fungal taxonomists"
authors = [
{name = "Changwan Seo", email = "wan101010@snu.ac.kr"}
]
license = "GPL-3.0"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"biopython",
"pandas",
"openpyxl",
"xlrd",
"numpy",
"xmltodict",
"pytz",
"python-dateutil"
]
[project.urls]
Homepage = "https://github.com/Changwanseo/GenMine"
[project.scripts]
GenMine = "GenMine.main:main"
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.packages.find]
where = ["."]
include = ["GenMine*"]