-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 733 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (24 loc) · 733 Bytes
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
#!/usr/bin/env python3
from setuptools import setup
setup(name='TrailCam',
version='1.4',
description='Webcam Library with FTP and Twitter',
author='Mark Buckaway',
author_email='mark@buckaway.ca',
url='http://github.com/mbuckaway/trailcam',
packages=['webcamlib'],
include_package_data=True,
entry_points = {'console_scripts': ['trailcam = webcamlib.cli_webcam:main']},
install_requires=[
"ephem",
"pillow",
"picamera",
"twython",
"adafruit-circuitpython-ina219",
"twilio",
"python-daemon",
"requests",
"thingspeak",
'pyyaml'
]
)