-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 769 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (24 loc) · 769 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
25
26
27
import setuptools
import os
exec(open("rdv/version.py").read()) # Loads __version__
ROOT_DIR = os.path.dirname(__file__)
REQUIREMENTS = [line.strip() for line in open(os.path.join(ROOT_DIR, "requirements.txt")).readlines()]
with open("README.md", "r") as fh:
LONG_DESC = fh.read()
setuptools.setup(
name="rdv",
version=__version__,
author="Raymon.ai",
author_email="hello@raymon.ai",
description="Raymon Data Validation Package.",
long_description=LONG_DESC,
long_description_content_type="text/markdown",
url="https://raymon.ai",
packages=setuptools.find_packages(),
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
],
python_requires=">=3.6",
install_requires=REQUIREMENTS,
)