forked from facebookresearch/nevergrad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (29 loc) · 1.2 KB
/
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
#!/usr/bin/env python
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
from setuptools import setup
from setuptools import find_packages
with open('requirements.txt') as f:
requirements = f.read().splitlines()
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='nevergrad',
version='0.1.4',
license='MIT',
description='A Python toolbox for performing gradient-free optimization',
long_description=long_description,
author='Facebook AI Research',
url="https://github.com/facebookresearch/nevergrad",
packages=find_packages(),
classifiers=['License :: OSI Approved :: MIT License',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Programming Language :: Python'],
data_files=[('', ['LICENSE', 'requirements.txt']),
('nevergrad', ["nevergrad/benchmark/additional/example.py",
"nevergrad/instrumentation/examples/script.py"])],
install_requires=requirements,
)