Skip to content
Snippets Groups Projects
Commit ad2b38a2 authored by Daniel Boeckenhoff's avatar Daniel Boeckenhoff
Browse files

independent __about__ file

parent 9d199ec2
No related branches found
No related tags found
No related merge requests found
...@@ -11,15 +11,15 @@ Publishing: ...@@ -11,15 +11,15 @@ Publishing:
""" """
from setuptools import setup, find_packages from setuptools import setup, find_packages
import header execfile('...tfields/__about__.py')
setup( setup(
name='tfields', name='tfields',
version=header.__version__, version=__version__,
description='numpy + sympy implementation of tensor fields with attached coordinate systems', description='numpy + sympy implementation of tensor fields with attached coordinate systems',
author=header.__author__, author=__author__,
author_email=header.__email__, author_email=__email__,
license='MIT', license=__license__,
packages=find_packages(), packages=find_packages(),
test_require=[ test_require=[
'doctest', 'doctest',
......
__version__ = '0.1.0.dev8'
__author__ = "Daniel Boeckenhoff"
__email__ = "daniel.boeckenhoff@ipp.mpg.de"
__license__ = "Apache License, Version 2.0"
__copyright__ = "2018 %s" % __author__
from header import * from .__about__ import *
from . import core from . import core
from . import bases from . import bases
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment