-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (39 loc) · 1.85 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
[project]
name = "fluoscenepy"
# version = "0.0..." # Manual specification of the version in this file
dynamic = ["version"] # Discovering of the version by the setuptools (see below: in the 'file' or 'attr')
authors = [
{name = "Sergei Klykov"},
{email = "sergej.klykow@gmail.com"}
]
description = "Simulation of a microscopic image with round (beads) and elongated fluorescent objects"
readme = "README.md"
# license = {file = "LICENSE"} # includes the whole text in METADATA, maybe not so convienient
license = {text = "MIT"} # short descriptive name of the used license
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"matplotlib",
]
keywords = ["fluorescent microscopic image simulation"]
[project.urls] # METADATA in wheel file will represent the data below by using pip show zernpy -v
# The links below are mapped / parced by the PyPi website
"Homepage" = "https://sklykov.github.io/fluoscenepy/"
"Repository" = "https://github.com/sklykov/fluoscenepy/"
"Bug Tracker" = "https://github.com/sklykov/fluoscenepy/issues/"
"Documentation" = "https://sklykov.github.io/fluoscenepy/api_doc/fluoscenepy/fluoscene.html"
"Changelog" = "https://github.com/sklykov/fluoscenepy/blob/main/CHANGELOG.md"
# [tool.setuptools.packages.find] # Manifest.in file is only required for adding some package-data
# where = ["src"] # there is no need to specify this here
# Below - specification of version within the package by discovering attribute in project files
[tool.setuptools.dynamic]
# version = {file = "VERSION"} # reading the version from the plane file
version = {attr = "fluoscenepy.__version__"} # Variable set in the __init__.py
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"