-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
62 lines (58 loc) · 1.83 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
#!/usr/bin/env python
# coding=utf-8
# Authors: John Stowers <[email protected]>, Santi Villalba <[email protected]>
# Licence: BSD 3 clause
import os.path as op
from setuptools import setup, find_packages
this_directory = op.abspath(op.dirname(__file__))
with open(op.join(this_directory, 'README.md'), 'rb') as f:
long_description = f.read().decode('UTF-8')
setup(
name='imgstore',
license='BSD 3 clause',
description='IMGStore houses your video frames',
long_description=long_description,
long_description_content_type='text/markdown',
include_package_data=True,
version='0.3.7',
url='https://github.com/loopbio/imgstore',
author='John Stowers, Santi Villalba',
author_email='[email protected], [email protected]',
python_requires='>=3.6',
packages=find_packages(),
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'License :: OSI Approved',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
install_requires=[
'numpy',
'pandas',
'pyyaml',
'backports.zoneinfo; python_version < "3.9.0"',
'tzlocal',
'python-dateutil',
],
tests_require=[
'pytest',
'pytest-cov',
'pytest-pep8'
],
extras_require={
'bloscpack': ['bloscpack']
},
entry_points={
'console_scripts': [
'imgstore-view = imgstore.apps:main_viewer',
'imgstore-save = imgstore.apps:main_saver',
'imgstore-test = imgstore.apps:main_test',
]
},
)