forked from imagej/pyimagej
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.07 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
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md')) as f:
pyimagej_long_description = f.read()
setup(
name='pyimagej',
# TODO: Unify version declaration to one place.
# https://www.python.org/dev/peps/pep-0396/#deriving
version= '0.6.0.dev0',
author='Curtis Rueden, Leon Yang, Yang Liu, Michael Pinkert',
author_email='[email protected]',
url='https://github.com/imagej/pyimagej',
packages=find_packages(),
platforms=['any'],
description='Python wrapper for ImageJ',
long_description=pyimagej_long_description,
long_description_content_type='text/markdown',
license='Apache 2.0',
install_requires=[
'imglyb',
'matplotlib',
'numpy',
'pyjnius',
'scyjava',
'xarray',
'pillow', # for server
'requests' # for server
],
tests_require=[
'pytest'
],
entry_points={
'console_scripts': [
'imagej=imagej.imagej:imagej_main'
]
}
)