Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tfields
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Daniel Boeckenhoff
tfields
Commits
ad2b38a2
Commit
ad2b38a2
authored
6 years ago
by
Daniel Boeckenhoff
Browse files
Options
Downloads
Patches
Plain Diff
independent __about__ file
parent
9d199ec2
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
setup.py
+5
-5
5 additions, 5 deletions
setup.py
tfields/__about__.py
+5
-0
5 additions, 0 deletions
tfields/__about__.py
tfields/__init__.py
+1
-1
1 addition, 1 deletion
tfields/__init__.py
with
11 additions
and
6 deletions
setup.py
+
5
−
5
View file @
ad2b38a2
...
@@ -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
'
,
...
...
This diff is collapsed.
Click to expand it.
tfields/__about__.py
0 → 100644
+
5
−
0
View file @
ad2b38a2
__version__
=
'
0.1.0.dev8
'
__author__
=
"
Daniel Boeckenhoff
"
__email__
=
"
daniel.boeckenhoff@ipp.mpg.de
"
__license__
=
"
Apache License, Version 2.0
"
__copyright__
=
"
2018 %s
"
%
__author__
This diff is collapsed.
Click to expand it.
tfields/__init__.py
+
1
−
1
View file @
ad2b38a2
from
header
import
*
from
.__about__
import
*
from
.
import
core
from
.
import
core
from
.
import
bases
from
.
import
bases
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment