-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (44 loc) · 1.4 KB
/
Copy pathsetup.py
File metadata and controls
48 lines (44 loc) · 1.4 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from src.version import __version__
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='FlapKine',
version=__version__,
author='Kalbhavi Vadhiraj',
author_email='raj.31@iitj.ac.in',
description='A Simulation Toolkit for the Kinematics of Flapping-Wing Micro Aerial Vehicles',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(where='.', include=['app', 'app.*', 'src', 'src.*']),
include_package_data=True,
install_requires=[
'pandas==2.0.2',
'numpy==1.26.4',
'numpy-stl==3.1.1',
'scipy==1.10.1',
'scikit-learn==1.5.2',
'PyQt5==5.15.9',
'QtAwesome==1.4.0',
'vtk==9.4.1',
'opencv-python-headless==4.10.0.84',
],
entry_points={
'console_scripts': [
'flapkine = app.main:main', # <- Adjust this based on your actual main entry
],
},
extras_require={
'test': [
'pytest>=8.3.0',
'pytest-qt>=4.4.0',
'pytest-mock>=3.14.0'
]
},
python_requires="<3.12",
classifiers=[
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Visualization",
],
)