-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpyproject.toml
65 lines (60 loc) · 1.59 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
[build-system]
requires = ["chronver", "setuptools>=66"]
build-backend = "setuptools.build_meta"
[project]
authors = [
{ name = "RadiaSoft LLC", email = "pip@radiasoft.net" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
dependencies = [
"SQLAlchemy>=1.4,<2",
"aenum",
"aiofiles",
"aiohttp",
"asyncssh",
"cryptography>=2.8",
"matplotlib",
"msgpack",
"numconv",
"numpy<2.0",
"Pillow",
"pyIsEmail",
"pykern",
"pytest-asyncio",
"pytz",
"requests",
"tornado",
"user-agents",
# only needed for testing (srunit)
"websockets",
# Optional dependencies
# required for email login and smtp
"Authlib>=0.13",
"dnspython",
# required for sbatch agent
"asyncssh",
]
description = "Sirepo provides browser access to physics codes like elegant, Warp, SRW, JSPEC, Zgoubi, and more."
dynamic = ["version"]
name = "sirepo"
readme = "README.md"
[project.scripts]
sirepo = "sirepo.sirepo_console:main"
hundli = "sirepo.hundli_console:main"
[project.urls]
Homepage = "https://sirepo.com"
[tool.setuptools.package-data]
sirepo = ["package_data/**"]
[tool.setuptools.packages.find]
include = ["sirepo*"]