Skip to content
Snippets Groups Projects
Commit 27ac49d9 authored by Timothe Jost's avatar Timothe Jost
Browse files

removing setup py now

parent 3a8335c1
No related branches found
No related tags found
No related merge requests found
Pipeline #126193 passed
# -*- 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={},
)
__version__ = "0.0.25" __version__ = "0.0.26"
from . import loggs from . import loggs
from .pipes import * from .pipes import *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment