-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 1.06 KB
/
setup.py
File metadata and controls
36 lines (35 loc) · 1.06 KB
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
# from distutils.core import setup
from setuptools import setup, find_packages
setup(
name='py-eyepi',
version='0.2.8-3',
python_requires='>=3.2',
packages=['libeyepi', "eyepiscripts"],
url='https://borevitzlab.github.io/py-eyepi/',
license='GPLv3',
author='Gareth Dunstone, Borevitz Lab, Australian Plant Phenomics Facility, TimeScience',
author_email='appf@anu.edu.au',
description='a tool to capture images from dslrs and raspberry pi cameras',
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Operating System :: Unix",
"Programming Language :: Python :: 3 :: Only"
],
keywords=['timelapse', 'imaging'],
entry_points={
'console_scripts': [
'py-eyepi = eyepiscripts.pyeyepi:main'
]
},
install_requires=[
"Pillow",
"numpy",
"python-dateutil>=2.6.1",
"toml>=0.9.1",
"picamera>=1.13",
"pyudev>=0.21.0",
"pytelegraf[http]>=0.3.0"
]
)