-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (27 loc) · 934 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
30
31
32
33
34
35
#!/usr/bin/env python3
from setuptools import setup, find_packages
def _read(path):
with open(path, "r") as f:
return f.read()
def load_iqc_version():
import os
version_file = open(os.path.join("iqc", "meta", "VERSION"))
version = version_file.read().strip()
return version
setup(
name="iqc",
version=load_iqc_version(),
license="MIT",
description="IQC is an automation tool for checking image folder contents against inventories, verifying checksums, and checking metadata.",
long_description=_read("README.md"),
url="https://github.com/nulib/nul-rdc-scripts",
author="Joshua Yocum",
packages={"iqc"},
# package_data={'dpx2ffv1': ['data/mediaconch_policies/*.xml']},
# include_package_data=True,
entry_points={
"console_scripts": ["iqc = iqc.iqc:iqc_main"],
},
install_requires=["pandas", "Pillow"],
python_requires=">=3.6",
)