-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·45 lines (37 loc) · 1.41 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
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python
# -*- coding: utf8 -*-
from setuptools import setup # , find_packages
from pip.req import parse_requirements
from panobbgo import __version__
# read requirements.txt
install_reqs = parse_requirements("requirements.txt")
required = [str(ir.req) for ir in install_reqs]
setup(
name="panobbgo",
version=__version__,
packages=['panobbgo'], # find_packages(),
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires=required,
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="nose.collector",
# metadata for upload to PyPI
author="Harald Schilly",
author_email="[email protected]",
description="Parallel Noisy Black-Box Global Optimization",
url="http://github.com/haraldschilly/panobbgo",
license='Apache 2.0',
keywords="optimization blackbox stochastic noisy parallel black-box ipython distributed cluster",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Operating System :: POSIX :: Linux"
]
)