forked from datavaluepeople/kotsu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (22 loc) · 752 Bytes
/
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
import pathlib
from setuptools import find_packages, setup
import versioneer
REPO_ROOT = pathlib.Path(__file__).parent
with open(REPO_ROOT / "README.md", encoding="utf-8") as f:
README = f.read()
REQUIREMENTS = ["pandas"]
setup(
name="kotsu",
version=versioneer.get_version(),
description="Lightweight framework for structured and repeatable model validation",
long_description=README,
long_description_content_type="text/markdown",
author="datavaluepeople",
author_email="opensource@datavaluepeople.com",
url="https://github.com/datavaluepeople/kotsu",
license="MIT",
packages=find_packages(),
install_requires=REQUIREMENTS,
python_requires=">=3.7",
cmdclass=versioneer.get_cmdclass(),
)