forked from pygae/galgebra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.31 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from distutils.core import Extension
import os
version_path = os.path.join('galgebra', '_version.py')
exec(open(version_path).read())
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='[email protected]',
url='https://github.com/pygae/galgebra',
license='BSD',
packages=find_packages(),
package_dir={'galgebra':'galgebra'},
install_requires = ['sympy'],
python_requires='>=3.5.*',
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 :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics'])