Skip to content

Commit

Permalink
adapt file structure
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaipalm committed Feb 24, 2024
1 parent 386dbec commit 75b5e45
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
File renamed without changes.
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages


def readme():
Expand All @@ -8,7 +8,7 @@ def readme():

setup(
name='paref',
version='0.2.2',
version='0.2.0',
license='MIT',
description='Pareto reflection based multi-objective optimization',
long_description=readme(),
Expand Down Expand Up @@ -38,4 +38,7 @@ def readme():
'test': ['pytest', 'pytest-cov'],
},
test_suite='tests',
packages=find_packages(
exclude=['dashboard*', 'functional_tests'], # alternatively: `exclude=['additional*']`
),
)

0 comments on commit 75b5e45

Please sign in to comment.