forked from pychebfun/pychebfun
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 720 Bytes
/
setup.py
File metadata and controls
25 lines (21 loc) · 720 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
#!/usr/bin/env python
from distutils.core import setup
import pychebfun
setup(
name = 'pychebfun',
version = pychebfun.__version__,
description = 'Python Chebyshev Functions',
author = 'Olivier Verdier, Chris Swierczewski',
url = 'https://github.com/olivierverdier/pychebfun',
license = 'GPL v.3',
keywords = ['Math', 'Chebyshev', 'chebfun',],
packages=['pychebfun',],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Mathematics',
],
)