forked from cog-imperial/entmoot
-
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) · 687 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 687 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
from setuptools import setup, find_packages
from pathlib import Path
project_root = Path(__file__).resolve().parent
about = {}
version_path = project_root / "entmoot" / "__version__.py"
with version_path.open() as f:
exec(f.read(), about)
setup(
name="entmoot",
author=about["__author__"],
author_email=about["__author_email__"],
license=about["__license__"],
version=about["__version__"],
url="https://github.com/cog-imperial/entmoot",
packages=find_packages(exclude=["tests", "docs"]),
install_requires=[
"numpy>=1.18.4",
"lightgbm>=2.3.1",
],
setup_requires=[
"numpy>=1.18.4",
"lightgbm>=2.3.1",
],
)