-
Notifications
You must be signed in to change notification settings - Fork 244
/
setup.py
40 lines (39 loc) · 1.26 KB
/
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
34
35
36
37
38
39
40
from setuptools import setup, find_packages
with open('README.md', encoding="utf8") as file:
long_description = file.read()
setup(
name='PytorchWildlife',
version='1.1.0',
packages=find_packages(),
url='https://github.com/microsoft/CameraTraps/',
license='MIT',
author='Andres Hernandez, Zhongqi Miao',
author_email='[email protected], [email protected]',
description='a PyTorch Collaborative Deep Learning Framework for Conservation.',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'torch',
'torchvision',
'torchaudio',
'tqdm',
'Pillow',
'supervision==0.23.0',
'gradio',
'ultralytics-yolov5',
'ultralytics',
'chardet',
'wget',
'ultralytics',
'setuptools==59.5.0',
'scikit-learn',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords='pytorch_wildlife, pytorch, wildlife, megadetector, conservation, animal, detection, classification',
python_requires='>=3.8',
)