forked from danielreardon/scintools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (32 loc) · 1.19 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Tue Aug 6 21:44:08 2019
@author: dreardon
"""
from setuptools import setup
setup(
name='scintools',
version='0.4',
description='Tools for analysing pulsar scintillation.',
long_description="See: `github.com/danielreardon/scintools \
<https://github.com/danielreardon/scintools>`_.",
classifiers=[
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Mathematics',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='dynamic-spectrum, pulsar-timing, scintillation,\
pulsar-scintillation',
url='https://github.com/danielreardon/scintools',
author='Daniel J. Reardon',
author_email='[email protected]',
license='MIT',
packages=['scintools'],
install_requires=['numpy<1.23.0', 'scipy', 'matplotlib', 'lmfit', 'astropy', 'emcee', 'bilby', 'pillow', 'six', 'scikit-image'],
include_package_data=True,
zip_safe=False,
)