-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.cfg
More file actions
74 lines (65 loc) · 1.97 KB
/
Copy pathsetup.cfg
File metadata and controls
74 lines (65 loc) · 1.97 KB
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
[metadata]
name = billiards
version = 1.0.0.dev2
license = MIT License
license_file = LICENSE
description = A 2D physics engine for simulating dynamical billiards
long_description = file: README.md, CHANGELOG.md
long_description_content_type = text/markdown
keywords = python3, physics-engine, physics-2d
author = Markus Ebke
author_email = markus.ebke92@gmail.com
url = https://github.com/markus-ebke/python-billiards
project_urls =
Source Code = https://github.com/markus-ebke/python-billiards
Bug Reports = https://github.com/markus-ebke/python-billiards/issues
platforms =
any
classifiers =
# complete classifier list: https://pypi.org/classifiers/
# status
Development Status :: 3 - Alpha
# who this project is for
Intended Audience :: Developers
Intended Audience :: Education
Intended Audience :: Science/Research
# lawyer stuff
License :: OSI Approved
License :: OSI Approved :: MIT License
# operating system
Operating System :: OS Independent
# natural language
Natural Language :: English
# programming language
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: Implementation :: CPython
# topic
Topic :: Education
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Physics
Topic :: Software Development :: Libraries
Topic :: Software Development :: Libraries :: Python Modules
[options]
package_dir =
=src
packages = find:
python_requires = >=3.8
install_requires =
numpy
[options.packages.find]
where = src
exclude =
docs
[options.extras_require]
visualize =
matplotlib>=3.5.0
tqdm
pyglet>=2.0.0