forked from SINTEF/Splipy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (39 loc) · 1.38 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
36
37
38
39
40
41
42
#!/usr/bin/env python3
from setuptools import setup
import numpy as np
with open('PyPI_text.md') as f:
long_description = f.read()
setup(
name='Splipy',
version='1.3.1',
description='Spline modelling library for Python',
long_description_content_type='text/markdown',
long_description=long_description,
keywords=['Bspline', 'Splines', 'NURBS', 'Curve', 'Surface', 'Volume', 'Interpolation', 'Approximation', 'Fit', 'Integration', 'Differentiation'],
url='https://github.com/sintefmath/Splipy',
maintainer='Kjetil Andre Johannessen',
maintainer_email='kjetijo@gmail.com',
license='GNU public license v3',
packages=['splipy', 'splipy.utils', 'splipy.io'],
package_data={
'splipy': ['templates/*.bpt'],
},
install_requires=[
'numpy >= 1.9',
'scipy >= 0.17',
],
extras_require={
'FiniteElement': ["nutils>=3.0"],
'Images': ["opencv-python>=3.3"],
},
include_dirs=[np.get_include()],
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Multimedia :: Graphics :: 3D Modeling',
'Topic :: Scientific/Engineering :: Mathematics',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)