-
Notifications
You must be signed in to change notification settings - Fork 62
/
setup.py
31 lines (29 loc) · 1.14 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from distutils.core import Extension
VERSION = '0.4.3'
LONG_DESCRIPTION = """
Symbolic Geometric Algebra/Calculus package for SymPy. BSD License.
"""
setup(name='galgebra',
version=VERSION,
description='Symbolic Geometric Algebra/Calculus package for SymPy.',
author='Alan Bromborsky',
author_email='hadfield.hugo@gmail.com',
url='https://github.com/pygae/galgebra',
license='BSD',
packages=find_packages(),
package_dir={'galgebra':'galgebra'},
install_requires = ['sympy'],
long_description=LONG_DESCRIPTION,
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',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics'])