forked from pygae/clifford
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (43 loc) · 1.34 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
43
44
45
46
47
48
49
#!/usr/bin/env python
from setuptools import setup, find_packages
from distutils.core import Extension
import os
version_path = os.path.join('clifford', '_version.py')
exec(open(version_path).read())
LONG_DESCRIPTION = """
A numerical geometric algebra module for python. BSD License.
"""
setup(
name='clifford',
version=__version__,
license='bsd',
description='Numerical Geometric Algebra Module',
long_description=LONG_DESCRIPTION,
author='Robert Kern',
author_email='alexarsenovic@gmail.com',
url='http://clifford.readthedocs.io',
packages=find_packages(),
install_requires=[
'numpy',
'scipy',
'numba==0.47.0',
'h5py',
'sparse',
],
package_dir={'clifford':'clifford'},
classifiers=[
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
project_urls={
"Bug Tracker": "https://github.com/pygae/clifford/issues",
"Source Code": "https://github.com/pygae/clifford",
},
python_requires='>=3.5',
)