-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
42 lines (36 loc) · 1.15 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
[project]
name = "OPIPP"
version = "0.1.1"
description = "A Python implementation of Optimization-based PIPP, a method for retinal mosaic simulation."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{name = "Liuyuan He", email = "[email protected]" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [ # Optional
"numpy >= 1.20.0",
"scipy >= 1.9.0",
"matplotlib >= 3.2.0",
"networkx >= 2.0.0",
]
[project.urls] # Optional
"Homepage" = "https://github.com/heliy/OPIPP"
"Bug Reports" = "https://github.com/heliy/OPIPP/issues"
"Source" = "https://github.com/heliy/OPIPP/"
[tool.setuptools]
package-data = {"sample" = ["*.points", "*.losses", "*.txt", "*.png", "*.md"]}
packages = ["OPIPP"]
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"