-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
54 lines (48 loc) · 1.55 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
requirements = [
'dask[array] == 2021.2.0',
'donfig >= 0.4.0',
'numpy >= 1.14.0, <= 1.19.5', # breakage in newer numpy + numerical errors
'numba >= 0.43.0',
'scipy >= 1.2.0',
'threadpoolctl >= 1.0.0',
'dask-ms == 0.2.6',
'zarr >= 2.3.1'
]
extras_require = {'testing': ['pytest',
'pytest-flake8',
'flake8 >= 4.0.0, <5.0.0',
'requests', 'gdown']}
setup(
author="Simon Perkins",
author_email='[email protected]',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
description="Science Data Processing flagging code, wrapped in dask",
entry_points={
'console_scripts': ['tricolour=tricolour.apps.tricolour.app:main'],
},
extras_require=extras_require,
install_requires=requirements,
long_description=readme,
long_description_content_type='text/x-rst',
include_package_data=True,
keywords='tricolour',
name='tricolour',
packages=find_packages(),
python_requires=">=3.6",
url='https://github.com/ska-sa/tricolour',
version='0.1.8.1',
zip_safe=False,
)