-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup_lib.py
executable file
·39 lines (31 loc) · 1.13 KB
/
setup_lib.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
#!/usr/bin/env python
from setuptools import setup # , find_packages
from panobbgo_lib import __version__
setup(
name="panobbgo_lib",
version=__version__,
packages=['panobbgo_lib'], # find_packages(),
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires=[
'docutils >= 0.3',
"numpy >= 1.5.0",
"scipy >= 0.9.0",
"IPython >= 0.12"
],
package_data={
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt', '*.rst'] # ,
# And include any *.msg files found in the 'hello' package, too:
# 'hello': ['*.msg'],
},
test_suite="panobbgo_lib",
# metadata for upload to PyPI
author="Harald Schilly",
author_email="[email protected]",
description="Problems for panobbgo",
url="http://github.com/haraldschilly/panobbgo",
license='Apache 2.0',
keywords="optimization blackbox stochastic noisy parallel black-box ipython distributed cluster",
# could also include long_description, download_url, classifiers, etc.
)