forked from mtlam/PyPulse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (29 loc) · 930 Bytes
/
setup.py
File metadata and controls
35 lines (29 loc) · 930 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
30
31
32
33
34
35
#!/usr/bin/env python
import os
import sys
from setuptools import setup
import pypulse
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
setup(
name='PyPulse',
version=pypulse.__version__,
author='Michael Lam',
author_email='michael.lam@nanograv.org',
url='https://github.com/mtlam/PyPulse',
packages=['pypulse'],
package_dir = {'pypulse': 'pypulse'},
zip_safe=False,
license='GPLv3',
description='A python package for handling and analyzing PSRFITS files.',
install_requires=['numpy', 'scipy', 'astropy'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
]
)