projectile-simulation/setup.py

15 lines
253 B
Python
Raw Permalink Normal View History

2023-10-07 20:53:38 +00:00
from setuptools import setup, find_packages
setup(
name="projectile-simulation",
version="1.0.0",
packages=find_packages(),
install_requires=[
"numpy",
"matplotlib",
],
tests_require=[
"pytest",
],
)