This repository was archived by the owner on Oct 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
99 lines (89 loc) · 2.5 KB
/
Copy pathsetup.py
File metadata and controls
99 lines (89 loc) · 2.5 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
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
requirements = [ # 'opencv-python-headless', # for SIFT functionality MUST conda install opencv or build source
'aicsimageio==0.6.4',
'cython>=0.29.5',
'imageio',
'numpy>=1.16.1',
'openpiv',
'pandas',
'scikit-video',
'matplotlib<3.0.0'
# 'opencv-python',
]
test_requirements = [
'codecov',
'flake8',
'pytest',
'pytest-cov',
'pytest-raises',
]
setup_requirements = ['pytest-runner', ]
dev_requirements = [
'bumpversion>=0.5.3',
'wheel>=0.33.1',
'flake8>=3.7.7',
'tox>=3.5.2',
'coverage>=5.0a4',
'Sphinx>=2.0.0b1',
'twine>=1.13.0',
'pytest>=4.3.0',
'pytest-cov==2.6.1',
'pytest-raises>=0.10',
'pytest-runner>=4.4',
]
interactive_requirements = [
'altair',
'jupyterlab',
'matplotlib',
]
extra_requirements = {
'test': test_requirements,
'setup': setup_requirements,
'dev': dev_requirements,
'interactive': interactive_requirements,
'all': [
*requirements,
*test_requirements,
*setup_requirements,
*dev_requirements,
*interactive_requirements
]
}
setup(
author="Jackson Maxfield Brown",
author_email='jacksonb@alleninstitute.org',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: Allen Institute Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
description="Processing and visualization tools used for interacting with deformation projects.",
entry_points={
'console_scripts': [
'generate_deformation_map=aicsdeformation.bin.deformation_map:main',
'optimize_paramenters=aicsdeformation.bin.optimize_deformation:main'
],
},
install_requires=requirements,
license="Allen Institute Software License",
long_description=readme,
include_package_data=True,
keywords='aicsdeformation',
name='aicsdeformation',
packages=find_packages(exclude=['tests', '*.tests', '*.tests.*']),
setup_requires=setup_requirements,
test_suite='tests',
tests_require=test_requirements,
extras_require=extra_requirements,
url='https://github.com/AllenCellModeling/aicsdeformation',
version='0.1.0',
zip_safe=False,
)