-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
32 lines (27 loc) · 921 Bytes
/
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
#!/usr/bin/env python
# Licensed under a 3-clause BSD style license - see LICENSE.rst
import os
from setuptools import setup
PACKAGENAME = "velocity_tools"
DESCRIPTION = 'Tools to help analysis of velocity cubes and velocity fields'
AUTHOR = 'Jaime E. Pineda'
AUTHOR_EMAIL = '[email protected]'
LICENSE = "MIT"
URL = "https://github.com/jpinedaf/velocity_tools.git"
# VERSION should be PEP386 compatible (http://www.python.org/dev/peps/pep-0386)
VERSION = '0.6.dev2'
here = os.path.abspath(os.path.dirname(__file__))
def read(fname):
return open(os.path.join(here, fname)).read()
setup(
name=PACKAGENAME,
version=VERSION,
description=DESCRIPTION,
long_description=read('README.md'),
packages=['velocity_tools'],
install_requires=['astropy>=5.0', 'scipy', 'numpy', 'scikit-image', 'regions>=0.5'],
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license=LICENSE,
url=URL,
)