Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Pypelines
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
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
HaissLab
Data Management
Pypelines
Commits
27ac49d9
Commit
27ac49d9
authored
1 year ago
by
Timothe Jost
Browse files
Options
Downloads
Patches
Plain Diff
removing setup py now
parent
3a8335c1
No related branches found
No related tags found
No related merge requests found
Pipeline
#126193
passed
1 year ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.setup.py
+0
-49
0 additions, 49 deletions
.setup.py
src/pypelines/__init__.py
+1
-1
1 addition, 1 deletion
src/pypelines/__init__.py
with
1 addition
and
50 deletions
.setup.py
deleted
100644 → 0
+
0
−
49
View file @
3a8335c1
# -*- coding: utf-8 -*-
"""
Created on Wed Mar 15 21:34:34 2023
@author: tjostmou
"""
from
setuptools
import
setup
,
find_packages
from
pathlib
import
Path
def
get_version
(
rel_path
):
here
=
Path
(
__file__
).
parent
.
absolute
()
with
open
(
here
.
joinpath
(
rel_path
),
"
r
"
)
as
fp
:
for
line
in
fp
.
read
().
splitlines
():
if
line
.
startswith
(
"
__version__
"
):
delim
=
'"'
if
'"'
in
line
else
"'"
return
line
.
split
(
delim
)[
1
]
raise
RuntimeError
(
"
Unable to find version string.
"
)
setup
(
name
=
"
pypelines
"
,
version
=
get_version
(
Path
(
"
pypelines
"
,
"
__init__.py
"
)),
packages
=
find_packages
(),
url
=
"
https://gitlab.pasteur.fr/haisslab/data-management/pypelines
"
,
license
=
"
MIT
"
,
author
=
"
Timothé Jost-MOUSSEAU
"
,
author_email
=
"
timothe.jost-mousseau@pasteur.com
"
,
description
=
(
"
Framework to organize processing code outputs to/from disk, processing chaining and versionning with a common
"
"
easy to use api
"
),
classifiers
=
[
"
Development Status :: 3 - Alpha
"
,
"
Intended Audience :: Developers
"
,
"
License :: OSI Approved :: MIT License
"
,
"
Programming Language :: Python :: 3
"
,
"
Programming Language :: Python :: 3.6
"
,
"
Programming Language :: Python :: 3.7
"
,
"
Programming Language :: Python :: 3.8
"
,
"
Programming Language :: Python :: 3.9
"
,
"
Programming Language :: Python :: 3.10
"
,
"
Programming Language :: Python :: 3.11
"
,
],
install_requires
=
[],
entry_points
=
{},
scripts
=
{},
)
This diff is collapsed.
Click to expand it.
src/pypelines/__init__.py
+
1
−
1
View file @
27ac49d9
__version__
=
"
0.0.2
5
"
__version__
=
"
0.0.2
6
"
from
.
import
loggs
from
.
import
loggs
from
.pipes
import
*
from
.pipes
import
*
...
...
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