-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·25 lines (24 loc) · 838 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·25 lines (24 loc) · 838 Bytes
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
#!/usr/bin/env python3
from setuptools import setup, find_namespace_packages
setup(
name="vortector",
version="1.0",
description="A vortex detector for planet-disk simulation data.",
author="Thomas Rometsch",
author_email="thomas.rometsch@uni-tuebingen.de",
url="https://github.com/rometsch/vortector",
package_dir={'': 'src'},
packages=find_namespace_packages(where="src"),
install_requires=[
"numpy", "matplotlib", "opencv-python", "scipy", "numba"
],
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: Unix",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Utilities"
],
python_requires='>=3.6'
)