-
Notifications
You must be signed in to change notification settings - Fork 35
/
pyproject.toml
127 lines (113 loc) · 3.41 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
[project]
name = "simphony"
version = "0.7.2"
description = "Simphony: A simulator for photonic circuits"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
keywords = ["photonics", "simulation", "circuits", "science", "engineering", "physics", "interconnect"]
# This should be your name or the name of the organization who originally
# authored the project, and a valid email address corresponding to the name
# listed.
authors = [
{name = "Sequoia Ploeg", email = "[email protected]" },
{name = "Hyrum Gunther"},
{name = "BYU CamachoLab", email = "[email protected]"}
]
# This should be your name or the names of the organization who currently
# maintains the project, and a valid email address corresponding to the name
# listed.
maintainers = [
{name = "Sequoia Ploeg", email = "[email protected]"},
{name = "Christian Carver", email = "[email protected]"},
{name = "BYU CamachoLab", email = "[email protected]"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: OS Independent",
]
dependencies = [
"scipy >= 1.5.4",
"numpy >= 1.19.5",
"sax >= 0.10.3",
"jax >= 0.4.18",
"pandas >= 2.0.0",
"lark ~= 1.1.5",
"tabulate ~= 0.9.0",
"deprecation ~= 2.1.0",
]
[project.optional-dependencies]
cpu = ["jax[cpu]"]
gdsfactory = ["gdsfactory"]
sipann = ["SiPANN"]
dev = [
"pre-commit",
"matplotlib",
"bump2version~=1.0.0",
"flake8",
"pytest",
"coverage",
"build",
"pytest",
"tox",
]
doc = [
"jupyter-book ~= 0.13.2",
"matplotlib >= 3.7.1",
# "numpydoc == 1.6.0",
"jsonschema <= 4.17.3",
"referencing <= 0.8.11",
]
test = [
"pytest",
"coverage",
]
[project.urls]
"Homepage" = "https://simphonyphotonics.readthedocs.io/en/stable/"
"Documentation" = "https://simphonyphotonics.readthedocs.io/en/stable/"
"Source" = "https://github.com/BYUCamachoLab/simphony"
"Bug Reports" = "https://github.com/BYUCamachoLab/simphony/issues"
"Research Group" = "https://camacholab.byu.edu/"
# [tool.setuptools]
# include-package-data = true
# package-data = {"sample" = ["*.dat"]}
[tool.setuptools.packages.find]
include = ["simphony"]
namespaces = false
# [tool.setuptools.package-data]
# simphony = ["*.xml", "*.txt", "*.dat"]
# [tool.setuptools.packages.find]
# where = ["."]
# [project.scripts]
# simphony = "simphony.cli:app"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests"]
console_output_style = "progress"
filterwarnings = ["ignore::UserWarning", "ignore::DeprecationWarning"]
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
known_third_party = ["SiPANN", "gdsfactory", "jax", "matplotlib", "numpy", "packaging", "parsimonious", "pytest", "scipy"]
known_first_party = ["simphony"]
[build-system]
requires = ["setuptools>=62.0.0", "wheel", "pip<=23.1.2"]
build-backend = "setuptools.build_meta"