-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (25 loc) · 807 Bytes
/
setup.py
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
from distutils.core import setup
setup(
name="electripy",
packages=["electripy", "electripy.physics", "electripy.visualization"],
version="0.1.0",
license="MIT",
description="Learn electrostatics by playing around with electrons and protons",
author="Dylan Tintenfich",
author_email="[email protected]",
url="https://github.com/dylannalex/electripy",
keywords=[
"electrostatics", "simulation", "physics"
],
install_requires=[
"numpy>=1.0.0",
"pygame>=2.0.0",
],
classifiers=[
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
],
python_requires=">=3.10",
include_package_data=True,
package_data={"electripy.visualization": ["sounds/add_charge.wav"]},
)