-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
42 lines (34 loc) · 1.3 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
41
42
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='animaloc',
version='0.2.1',
license='MIT License',
license_files = ('LICENSE.md'),
description='Animal localization in aerial imagery using Pytorch',
long_description=long_description,
# The project's main homepage.
url='https://github.com/Alexandre-Delplanque/HerdNet',
# Author details
author='Alexandre Delplanque',
author_email='[email protected]',
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3.8',
],
python_requires='~=3.8',
# What does your project relate to?
keywords='animal localization detection uliege',
# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages().
packages=find_packages()
)