mirror of
https://github.com/NotAShelf/projectile-simulation.git
synced 2024-11-01 11:01:19 +00:00
15 lines
253 B
Python
15 lines
253 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="projectile-simulation",
|
|
version="1.0.0",
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
"numpy",
|
|
"matplotlib",
|
|
],
|
|
tests_require=[
|
|
"pytest",
|
|
],
|
|
)
|