-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (20 loc) · 728 Bytes
/
setup.py
File metadata and controls
24 lines (20 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import find_packages # type:ignore
from setuptools import setup
with open("data_expectations/version.py", "r") as v:
vers = v.read()
exec(vers) # nosec
with open("requirements.txt") as f:
required = f.read().splitlines()
with open("README.md", "r") as rm:
long_description = rm.read()
setup(
name="data_expectations",
version=__version__,
description="Are your data meeting all your expecations",
long_description=long_description,
long_description_content_type="text/markdown",
maintainer="Joocer",
packages=find_packages(include=["data_expectations", "data_expectations.*"]),
url="https://github.com/joocer/data_expectations",
install_requires=required,
)