-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
32 lines (26 loc) · 1.42 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
from setuptools import setup, find_packages
# Get the long description from the relevant file
with open('README.md','r') as f:
long_description = f.read()
setup(name='FreeClimber',
version='0.4.0',
description='FreeClimber is a Python-based background subtraction, particle detector used to estimate the velocity for a group of particles moving from the bottom to the top of an image, using a local linear regression.',
long_description=long_description,
long_description_content_type="text/markdown",
url='http://github.com/adamspierer/FreeClimber',
author='Adam Spierer',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'],
keywords='Drosophila melanogaster climbing negative geotaxis assay background subtraction particle detection local linear regression high-throughput high throughput automated behavior quantification velocity',
packages=find_packages(),
# packages=['FreeClimber'],
install_requires=['ffmpeg-python==0.2.0',"argparse==1.1",
'pandas','numpy','scipy','pip','matplotlib==3.1.3',
'wxPython==4.0.4','trackpy==0.4.2'],
zip_safe=False)