-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
76 lines (62 loc) · 2.15 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
66
67
68
69
70
71
72
73
74
75
76
# -*- coding: utf-8 -*-
# czifile/setup.py
"""Czifile package setuptools script."""
import sys
import re
from setuptools import setup
buildnumber = ''
with open('czifile/czifile.py') as fh:
code = fh.read()
version = re.search(r"__version__ = '(.*?)'", code).groups()[0]
version += ('.' + buildnumber) if buildnumber else ''
description = re.search(r'"""(.*)\.(?:\r\n|\r|\n)', code).groups()[0]
readme = re.search(r'(?:\r\n|\r|\n){2}"""(.*)"""(?:\r\n|\r|\n){2}from', code,
re.MULTILINE | re.DOTALL).groups()[0]
readme = '\n'.join([description, '=' * len(description)] +
readme.splitlines()[1:])
license = re.search(r'(# Copyright.*?(?:\r\n|\r|\n))(?:\r\n|\r|\n)+""', code,
re.MULTILINE | re.DOTALL).groups()[0]
license = license.replace('# ', '').replace('#', '')
if 'sdist' in sys.argv:
with open('LICENSE', 'w') as fh:
fh.write(license)
with open('README.rst', 'w') as fh:
fh.write(readme)
setup(
name='czifile',
version=version,
description=description,
long_description=readme,
author='Christoph Gohlke',
author_email='[email protected]',
url='https://www.lfd.uci.edu/~gohlke/',
license='BSD',
packages=['czifile'],
python_requires='>=2.7',
install_requires=[
'numpy>=1.11.3',
# 'scipy>=1.1',
'tifffile>=2019.7.2',
'imagecodecs>=2019.5.22;platform_system=="Windows"',
],
tests_require=['pytest'],
entry_points={
'console_scripts': [
'czifile = czifile.czifile:main',
'czi2tif = czifile.czi2tif:main',
]},
platforms=['any'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)