forked from pygae/galgebra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 993 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from distutils.core import Extension
setup(name='galgebra',
version='0.4.0',
description='Symbolic Geometric Algebra/Calculus modules for sympy',
author='Alan Bromborsky',
author_email='[email protected]',
license='BSD',
packages=find_packages(),
package_dir={'galgebra':'galgebra'},
install_requires = [
'sympy',
'numpy'],
#long_description=read('README'),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics'])