-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (29 loc) · 1.07 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from distutils.core import setup
from typing import List
from setuptools import find_packages
long_description = (
"Persistable is a lightweight framework that helps developers clearly define parametrized "
"programmatic pipelines, and reproducibly generate, persist, and load artifacts using parameter "
"based persisting and loading."
)
install_requires: List[str] = ["numpy>=1.21.0"]
dev_requires: List[str] = [
"pre-commit>=2.19.0",
"pytest>=7.1.2",
]
setup(
name="persistable",
version="1.3.0",
packages=find_packages(),
url="https://github.com/aloosley/persistable",
download_url="https://github.com/aloosley/persistable/archive/1.3.0.tar.gz",
license="",
author="Alex Loosley, Stephan Sahm",
author_email="[email protected], [email protected]",
description="Reproducible parameter based pipelines and persisting",
long_description=long_description,
keywords=["persisting", "models", "pipeline"],
install_requires=install_requires,
extras_require=dict(dev=dev_requires),
python_requires=">=3.9",
)