We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 386dbec commit 75b5e45Copy full SHA for 75b5e45
2 files changed
dashboard/app.py docs/dashboard/app.pydashboard/app.py renamed to docs/dashboard/app.py
setup.py
@@ -1,4 +1,4 @@
1
-from setuptools import setup
+from setuptools import setup, find_packages
2
3
4
def readme():
@@ -8,7 +8,7 @@ def readme():
8
9
setup(
10
name='paref',
11
- version='0.2.2',
+ version='0.2.0',
12
license='MIT',
13
description='Pareto reflection based multi-objective optimization',
14
long_description=readme(),
@@ -38,4 +38,7 @@ def readme():
38
'test': ['pytest', 'pytest-cov'],
39
},
40
test_suite='tests',
41
+ packages=find_packages(
42
+ exclude=['dashboard*', 'functional_tests'], # alternatively: `exclude=['additional*']`
43
+ ),
44
)
0 commit comments