mirror of
https://github.com/NotAShelf/projectile-simulation.git
synced 2024-11-22 21:31:10 +00:00
add a setup.py for nix
This commit is contained in:
parent
d2cfdd6d25
commit
a532eae13b
1 changed files with 14 additions and 0 deletions
14
setup.py
Normal file
14
setup.py
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name="projectile-simulation",
|
||||||
|
version="1.0.0",
|
||||||
|
packages=find_packages(),
|
||||||
|
install_requires=[
|
||||||
|
"numpy",
|
||||||
|
"matplotlib",
|
||||||
|
],
|
||||||
|
tests_require=[
|
||||||
|
"pytest",
|
||||||
|
],
|
||||||
|
)
|
Loading…
Reference in a new issue