-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
40 lines (34 loc) · 945 Bytes
/
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
[tool.poetry]
name = "ensembl-genes"
version = "0.1.0"
description = "Tools for genome annotation"
authors = ["Ensembl <[email protected]>"]
maintainers = [
"ensembl <[email protected]>",
]
license = "Apache 2.0"
repository = "https://github.com/Ensembl/ensembl-genes"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
[tool.poetry.dependencies]
python = "^3.8"
pymysql = "1.0.2"
sqlalchemy = "1.4.9"
[tool.poetry.dev-dependencies]
pylint = "^2.7.4"
pytest = "^6.2.3"
sphinx = "^3.5.4"
black = "^22.3.0"
[tool.poetry.scripts]
star2introns = "ensembl_genes.star2introns:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.setuptools.packages.find]
where = ["ensembl_genes"]
[tool.setuptools]
package-dir = {"" = "ensembl_genes"}
requires-python = ">=3.7"