forked from cytomining/cytominer-eval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (23 loc) · 842 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
import pathlib
from setuptools import setup
from setuptools import find_packages
with open("README.md", encoding="utf-8") as readme_file:
long_description = readme_file.read()
about = {}
with open(pathlib.Path("cytominer_eval/__about__.py")) as fp:
exec(fp.read(), about)
setup(
name="cytominer_eval",
version=about["__version__"],
description="Methods to evaluate profiling dataframes with features and metadata",
long_description=long_description,
long_description_content_type="text/markdown",
author=about["__author__"],
author_email="[email protected]",
url="https://github.com/cytomining/cytominer-eval",
packages=find_packages(),
license=about["__license__"],
install_requires=["numpy", "pandas", "scikit-learn"],
python_requires=">=3.5",
include_package_data=True,
)