forked from lofar-astron/lofarimaging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (24 loc) · 1.05 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
#!/usr/bin/env python
from setuptools import setup
from lofarimaging import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
if __name__ == "__main__":
setup(name='lofarimaging',
version=__version__,
description='LOFAR imaging utilities',
long_description=long_description,
long_description_content_type="text/markdown",
author='Vanessa Moss, Michiel Brentjens, Tammo Jan Dijkema, Maaijke Mevius (ASTRON)',
author_email='[email protected]',
packages=['lofarimaging'],
url="https://github.com/lofar-astron/lofarimaging",
requires=['numpy', 'numexpr', 'numba', 'astropy', 'lofargeotiff', 'lofarantpos',
'matplotlib', 'folium', 'mercantile', 'owslib', 'packaging', 'Pillow', 'h5py', 'tqdm'],
scripts=[],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
)