forked from nkarast/PyNAFF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (30 loc) · 958 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
33
34
35
36
37
#
# Install it with:
# python setup.py build_ext --inplace
#
from setuptools import setup, find_packages
from os import path
from codecs import open
import numpy as np
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
include_dirs = [np.get_include()]
setup(
name = "PyNAFF",
version = '1.1.5',
description = 'A Python module that implements NAFF algorithm',
long_description = long_description,
# projects main page
url='https://github.com/nkarast/PyNAFF',
# Author details
author='Nikos Karastathis',
author_email='[email protected]',
# licence
licence = 'GPLv3',
keywords = "naff numerical analysis frequency fundamental",
install_requires=['numpy', 'future'],
packages = find_packages(),
# ext_modules = cythonize(extensions),
)