-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 949 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
from setuptools import setup, find_packages
# Get the long description from the README file
long_description = """# bugtracker
"""
setup(
name='bugtracker',
version='1.5.6',
description='Insect tracking from radar data.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Frederic Fabry, Daniel Hogg',
author_email='daniel.hogg@mcgill.ca',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
],
keywords='radar',
packages=find_packages(exclude=['tests','examples']),
# Distributing binary as a possible alternative to CPython extensions
package_data={'pyrefract.corelib': ['io_corelib.so']},
python_requires='>=3.5, <4',
install_requires=['numpy', 'matplotlib', 'opencv-python', 'cartopy', 'beautifulsoup4',
'requests', 'scipy', 'geopy', 'arm-pyart', 'pytest', 'pyproj'],
)