-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
33 lines (31 loc) · 969 Bytes
/
setup.py
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
import setuptools
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="nely-df3d",
version="0.60",
description="GUI and 3D pose estimation pipeline for tethered Drosophila.",
author="Semih Gunel",
author_email="gunelsemih@gmail.com",
entry_points={
"console_scripts": ["df3d = df3d.gui:main", "df3d-cli = df3d.cli:main"]
},
packages=setuptools.find_packages(),
include_package_data=True,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/NeLy-EPFL/DeepFly3D",
python_requires=">=3.8",
install_requires=[
"colorama",
"matplotlib",
"numpy",
"opencv-python-headless>=4.8.1.78", # https://github.com/NeLy-EPFL/DeepFly3D/security/dependabot/4
"PyQt5",
"scikit-learn",
"tqdm",
"nely-pyba>=0.13",
"nely-df2d>=0.14",
],
)