forked from microsoft/CameraTraps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (37 loc) · 1.32 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
from setuptools import setup, find_packages
setup(
name='PytorchWildlife',
version='1.0.2.2',
packages=find_packages(),
url='https://github.com/microsoft/CameraTraps/',
license='MIT',
author='Andres Hernandez, Zhongqi Miao',
author_email='v-herandres@microsoft.com, zhongqimiao@microsoft.com',
description='a PyTorch Collaborative Deep Learning Framework for Conservation.',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
install_requires=[
'numpy',
'torch==1.10.1',
'torchvision==0.11.2',
'torchaudio==0.10.1',
'tqdm==4.66.1',
'Pillow==10.1.0',
'supervision==0.16.0',
'gradio==4.8.0',
'ultralytics-yolov5',
'chardet'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
keywords='pytorch, wildlife, megadetector, conservation, animal, detection, classification',
python_requires='>=3.8',
)