Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
N
navipy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Olivier Bertrand
navipy
Commits
0d38e931
Commit
0d38e931
authored
7 years ago
by
Luise Odenthal
Browse files
Options
Downloads
Patches
Plain Diff
commit setup
parent
045f08bb
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
setup.py
+35
-0
35 additions, 0 deletions
setup.py
with
35 additions
and
0 deletions
setup.py
0 → 100644
+
35
−
0
View file @
0d38e931
from
distutils.core
import
setup
# from distutils import util
import
site
if
__name__
==
"
__main__
"
:
site_package_path
=
site
.
getsitepackages
()
setup
(
name
=
'
navigationToolbox
'
,
package_dir
=
{
'
navigationToolbox
'
:
'
src
'
,
'
navigationToolbox.database
'
:
'
src/database
'
,
'
navigationToolbox.processing
'
:
'
src/processing
'
,
# 'navigation-toolbox.rendering': 'src/rendering',
# 'navigation-toolbox.comparing': 'src/comparing'
},
packages
=
[
'
navigationToolbox
'
,
'
navigationToolbox.database
'
,
'
navigationToolbox.processing
'
,
# 'navigation-toolbox.rendering',
# 'navigation-toolbox.comparing'
],
data_files
=
[
(
site_package_path
[
0
]
+
'
/navigationToolbox
'
,
[
'
src/database.db
'
])
],
version
=
'
0.1
'
,
description
=
'
The toolbox used by the research
'
'
group Neurobiology at Bielefeld Univeristy
'
,
url
=
'
https://lamina.biologie.uni-bielefeld.de/
'
,
author
=
'
Members of the research group
'
,
author_email
=
'
olivier.bertrand@uni-bielefeld.de
'
,
license
=
'
Bielefeld University
'
,
)
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