-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
35 lines (25 loc) · 875 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
29
30
31
32
33
34
35
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
setup(
name='heuristic_optimization',
version='0.4.3',
description='Heuristics for derivative-free optimization',
long_description=readme,
url='https://github.com/tjanson/heuristic_optimization',
author='Tom Janson',
author_email='tom.janson@rwth-aachen.de',
license='MIT',
packages=find_packages(exclude=['examples', 'tests']),
install_requires=['numpy'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
],
)