This repository has been archived by the owner on May 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
65 lines (58 loc) · 1.81 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
from setuptools import setup
from glob import glob
import versioneer
versioneer.VCS = 'git'
versioneer.versionfile_source = 'timestream/_version.py'
versioneer.versionfile_build = 'timestream/_version.py'
versioneer.tag_prefix = ''
versioneer.parentdir_prefix = 'timestreamlib-'
desc = """
timestream: Utilities and a python library for manipulating timelapses in the
TimeStream format
"""
install_requires = [
"ExifRead==1.4.2",
"docopt==0.6.2",
"voluptuous==0.8.4",
"scikit-image>=0.10.1"
]
test_requires = [
"coverage==3.7.1",
"nose==1.3.0",
"pep8==1.4.6",
"pylint==1.0.0",
]
scripts = glob('scripts/*.py')
setup(
name="timestream",
packages=[
'timestream',
'timestream.manipulate',
'timestream.parse',
'timestream.util',
],
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
install_requires=install_requires,
tests_require=test_requires,
scripts=scripts,
description=desc,
author="Kevin Murray",
author_email="[email protected]",
url="https://github.com/borevitzlab/timestreamlib",
keywords=["timestream", "timelapse", "photography", "video"],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: GNU General Public License v3 or later " +
"(GPLv3+)",
],
test_suite="test",
)