aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 0f708950d353920d78064b6c06f4146fcaee82b6 (plain)
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
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/

[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "gn-libs"
dynamic = []
version = "0.0.0"
dependencies = [
    "authlib",
    "pymonad",
    "mysqlclient>=2.0.1"
]
requires-python = ">=3.10"
authors = [
    {name = "Frederick M. Muriithi", email = "fredmanglis@gmail.com"},
]
maintainers = [
    {name = "Frederick M. Muriithi", email = "fredmanglis@gmail.com"},
]
description = "gn-libs: Tools/Utilities for GeneNetwork Projects"
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
keywords = []
classifiers = [
    "Development Status :: 3 - Alpha",
    "Intended Audience :: Developers",
]

[project.urls]
Homepage = "https://git.genenetwork.org/gn-libs/"
Repository = "https://git.genenetwork.org/gn-libs/"

[project.optional-dependencies]
dev = [
    "mypy",
    "pytest",
    "pylint",
#    "types-mysqlclient" # enable this once the types make it to guix
]