-
Notifications
You must be signed in to change notification settings - Fork 67
/
setup.py
41 lines (37 loc) · 1.1 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
import os
from setuptools import setup
import versioneer
try:
descr = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
except IOError:
descr = ''
setup_parameters = dict(
name="PIMS",
license="BSD-3-clause",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Python Image Sequence",
author="PIMS Contributors",
python_requires=">=3.7",
install_requires=[
'imageio',
'numpy>=1.19',
'packaging',
'slicerator>=0.9.8',
'tifffile',
],
author_email="[email protected]",
url="https://github.com/soft-matter/pims",
packages=["pims", "pims.utils", "pims.tests"],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
long_description=descr,
long_description_content_type='text/markdown',
)
setup(**setup_parameters)