-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
35 lines (33 loc) · 1.04 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
from setuptools import setup
import os
from io import open # Py2.7 compatibility
def readme():
with open(os.path.join(
os.path.dirname(os.path.abspath(__file__)),
'README.md'
), encoding='utf8') as fp:
return fp.read()
setup(
name = 'baryrat',
version = '2.1.0',
description = 'A Python package for barycentric rational approximation',
long_description = readme(),
long_description_content_type = 'text/markdown',
author = 'Clemens Hofreither',
author_email = '[email protected]',
url = 'https://github.com/c-f-h/baryrat',
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics',
'License :: OSI Approved :: BSD License',
],
py_modules = ['baryrat'],
install_requires = [
'numpy>=1.11',
'scipy',
],
tests_require = 'nose',
test_suite = 'nose.collector'
)