-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 844 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 844 Bytes
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
from setuptools import setup, find_packages
setup(
name='DynSpecMS',
version='0.1.0',
packages=find_packages(include=['DynSpecMS', 'DynSpecMS.*']),
include_package_data=True,
install_requires=[
'dask[array]<=2023.5.0',
'dask-ms==0.2.21',
'xarray==2024.7.0',
'psutil<=5.9.3'
# other dependencies
],
entry_points={
'console_scripts': [
'ms2dynspec=DynSpecMS.scripts.ms2dynspec:main',
],
},
author='Cyril Tasse',
author_email='cyril.tasse@obspm.fr',
description='Extract Dynamic Spectra from Measurement Sets',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/cyriltasse/DynSpecMS',
classifiers=[
'Programming Language :: Python :: 3',
],
)