36 lines
1.0 KiB
INI
36 lines
1.0 KiB
INI
[metadata]
|
|
name = packsim-ksjdragon
|
|
version = 0.1
|
|
author = Kenneth Jao
|
|
author_email = ksjdragon@gmail.com
|
|
description = PackSim is a Python package that handles the simulations for Voronoi cells undergoing a gradient flow.
|
|
long_description = file: README.md
|
|
long_description_content_type = text/markdown
|
|
url = https://github.com/ksjdragon/packsim
|
|
project_urls =
|
|
Bug Tracker = https://github.com/ksjdragon/packsim/issues
|
|
classifiers =
|
|
Programming Language :: Python :: 3.8
|
|
Programming Language :: Python :: 3.9
|
|
Programming Language :: Python :: 3.10
|
|
License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
|
|
Operating System :: OS Independent
|
|
|
|
[options]
|
|
zip_safe = False
|
|
package_dir =
|
|
= packsim
|
|
packages = find:
|
|
python_requires = >= 3.8
|
|
install_requires =
|
|
numpy == 1.21.2
|
|
scipy == 1.7.1
|
|
matplotlib == 3.4.3
|
|
|
|
[options.packages.find]
|
|
where = packsim
|
|
|
|
[options.entry_points]
|
|
console_scripts =
|
|
simulate = packsim.scripts.simulate:main
|
|
shrink_energy_comparison = packsim.scripts.shrink_energy_comparison:main |