-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1.31 KB
/
setup.py
File metadata and controls
33 lines (31 loc) · 1.31 KB
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
from setuptools import setup, find_packages
from os import path
working_directory = path.abspath(path.dirname(__file__))
with open(path.join(working_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='pyimpBB',
version='0.2.0',
description='Implementation of an algorithm from the field of global optimization according to the publication ‘The improvement function in branch-and-bound methods for complete global optimization’ by S. Schwarze, O. Stein, P. Kirst and M. Rodestock.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Marc Rodestock',
author_email="marc@fam-rodestock.de",
#url='https://github.com/uisab/pyimpBB',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Operating System :: OS Independent'
],
keywords='global optimization, improvement function, branch-and-bound method',
packages=find_packages(),
#python_requires='==3.9',
install_requires=['numpy','matplotlib','pyinterval','scipy'],
project_urls={
# "Publication": "",
"Institution": "https://www.ior.kit.edu",
"Source": "https://github.com/uisab/pyimpBB"
}
)