-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
46 lines (39 loc) · 1.15 KB
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "codon_optimizer"
version = "0.3.0"
description = "Substitute codons by those that are the most frequent in a specific organism."
authors = [{name = "Jerome Lane", email = "jerome.lane@hotmail.com"}]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
# Dependencies
dependencies = [
"biopython",
"numpy",
"pandas",
]
# Python version requirements
requires-python = ">=3.7"
# Optional dependencies (if applicable)
[project.optional-dependencies]
dev = [
"pytest",
"flake8",
"black",
]
# Adding the entry-points section correctly
[project.scripts]
codon_optimizer = "codon_optimizer.codon_optimizer:codon_optimizer"
[options.package_data]
"codon_optimizer" = ["reference_seq/*.csv"]
[project.urls]
Repository = "https://github.com/jeromelane/codon_optimizer.git"