forked from awegroup/Particle_System_Simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (37 loc) · 980 Bytes
/
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
[tool.portray]
modules = [ 'src.particleSystem.Particle',
'src.particleSystem.SpringDamper',
'src.particleSystem.ParticleSystem',
'src.ExternalForces.OpticalForceCalculator',
'src.ExternalForces.LaserBeam',
'src.ExternalForces.optical_interpolators.interpolators',
'src.Mesh.mesh_functions']
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "LightSailSim"
version = "0.1.0"
dependencies = [
"numpy",
"pandas",
"matplotlib",
"scipy",
]
requires-python = ">=3.8"
authors = [
{name = "Mark Kalsbeek"},
]
maintainers = [
{name = "Mark Kalsbeek"}
]
description = "LightSailSim"
readme = "README.md"
keywords = ["Membrane Analysis", "Lightsails"] # Add your desired keywords here
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Intended Audience :: Lightsail Designers, Developers",
]
[project.urls]
Repository = "https://github.com/Markk116/LightSailSim/tree/main"