forked from glencoesoftware/isyntax2raw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
101 lines (85 loc) · 2.97 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# encoding: utf-8
#
# Copyright (c) 2019 Glencoe Software, Inc. All rights reserved.
#
# This software is distributed under the terms described by the LICENCE file
# you can find at the root of the distribution bundle.
# If the file is missing please request a copy by contacting
import os
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
import version
# Hack to prevent stupid "TypeError: 'NoneType' object is not callable" error
# in multiprocessing/util.py _exit_function when running `python
# setup.py test` or `python setup.py flake8`. See:
# * http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html)
# * https://github.com/getsentry/raven-python/blob/master/setup.py
import multiprocessing
assert multiprocessing # silence flake8
def get_requirements(suffix=''):
with open('requirements%s.txt' % suffix) as f:
rv = f.read().splitlines()
return rv
class PyTest(TestCommand):
user_options = [('pytest-args=', 'a', 'Arguments to pass to py.test')]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = []
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import pytest
if isinstance(self.pytest_args, str):
# pytest requires arguments as a list or tuple even if singular
self.pytest_args = [self.pytest_args]
errno = pytest.main(self.pytest_args)
sys.exit(errno)
def read(fname):
"""
Utility function to read the README file.
:rtype : String
"""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='isyntax2raw',
version=version.getVersion(),
python_requires='>=3.6',
description='iSyntax to raw format converter',
long_description=read('README.md'),
long_description_content_type='text/markdown',
classifiers=[], # Get strings from
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='Glencoe Software, Inc.',
author_email='[email protected]',
url='https://github.com/glencoesoftware/isyntax2raw',
license='License :: OSI Approved :: BSD License',
packages=find_packages(),
package_data={'isyntax2raw': ['resources/*.xml']},
zip_safe=True,
include_package_data=True,
platforms='any',
setup_requires=['flake8'],
install_requires=[
'click==7.0',
'pillow>=7.1.0',
'numpy==1.17.3',
'zarr==2.8.1',
'kajiki==0.8.2',
'Glymur==0.9.3',
'fsspec>=0.9.0',
],
tests_require=[
'flake8',
'pytest',
],
cmdclass={'test': PyTest},
entry_points={
'console_scripts': [
'isyntax2raw = isyntax2raw.cli.isyntax2raw:main',
]
}
)