-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
40 lines (39 loc) · 911 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
36
37
38
39
40
from setuptools import setup, find_packages
import versioneer
setup(
name='badger-opt',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Core of the Badger optimizer',
url='https://github.com/SLAC-ML/Badger',
author='Zhe Zhang',
author_email='[email protected]',
license='GPL',
packages=find_packages(where='src'),
package_dir={'': 'src'},
include_package_data=True,
install_requires=[
'pandas',
'pyyaml',
'coolname',
'pyqt5',
'pyqtgraph',
'qdarkstyle',
'pillow',
'requests',
'tqdm',
'xopt'
],
extras_require={
'dev': [
'pytest',
'pytest-qt'
]
},
python_requires='>=3.9',
entry_points={
'console_scripts': [
'badger = badger.__main__:main'
]
},
)