We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d04c0ba commit a345da0Copy full SHA for a345da0
setup.py
@@ -1,13 +1,3 @@
1
-from setuptools import setup
2
-
3
-setup(
4
- name='freelunch',
5
- version='0.0.1',
6
- description='Meta-heuristic optimisation tools',
7
- py_modules=['freelunch'],
8
- package_dir={'':'src'},
9
-)
10
11
from setuptools import setup, find_packages
12
13
@@ -18,7 +8,7 @@
18
# This call to setup() does all the work
19
setup(
20
name="freelunch",
21
- version="0.0.1",
+ version="0.0.2",
22
description="Heuristic and meta-heuristic optimisation suite in Python",
23
long_description=rm,
24
14
long_description_content_type="text/markdown",
src/freelunch/__init__.py
@@ -1,3 +1,3 @@
-__version__ = "0.0.1"
+__version__ = "0.0.2"
from __main__ import *
0 commit comments