forked from cog-imperial/entmoot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 798 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
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',
'scikit-learn>=0.21.3',
'pyYAML>=5.3.1',
'lightgbm>=2.3.1'
],
setup_requires=[
'numpy>=1.18.4',
'scikit-learn>=0.21.3',
'pyYAML>=5.3.1',
'lightgbm>=2.3.1'
]
)