-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
28 lines (25 loc) · 863 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
# encoding: utf-8
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="benderopt",
version="1.4.2",
packages=[
"benderopt",
"benderopt.validation",
"benderopt.base",
"benderopt.optimizer",
"benderopt.stats",
],
author="Valentin Thorey",
author_email="v.thorey@gmail.com",
description="Black Box optimization library.",
include_package_data=True,
url="https://github.com/Dreem-Organization/benderopt",
classifiers=["Programming Language :: Python", "Programming Language :: Python :: 3"],
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["numpy>=1.15.4", "scipy>=1.1.0"],
extras_require={"test": ["pytest", "pytest-coverage"], "dev": ["black", "isort"]},
)