-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
30 lines (27 loc) · 799 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
from setuptools import setup
# The text of the README file
with open('README.md') as f:
rm = f.read()
# This call to setup() does all the work
setup(
name="freelunch",
version="0.0.15",
description="Heuristic and meta-heuristic optimisation suite in Python",
long_description=rm,
long_description_content_type="text/markdown",
url="https://github.com/MDCHAMP/FreeLunch",
author="Max Champneys",
author_email="max.champneys@gmail.com",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
],
packages=['freelunch'],
package_dir={'':'src'},
include_package_data=False,
install_requires=[
"numpy"
],
)