-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·51 lines (48 loc) · 1.8 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
"""
Paretoflow is a Python package for offline multi-objective optimization using
Generative Flow Models with Multi Predictors Guidance to approximate the Pareto front.
"""
from setuptools import setup
__version__ = "0.1.5"
__author__ = "Ye Yuan, Can Chen"
setup(
name="paretoflow",
version=__version__,
description="Paretoflow is a Python package for offline multi-objective optimization using \
Generative Flow Models with Multi Predictors Guidance to approximate the Pareto front.",
url="https://github.com/StevenYuan666/ParetoFlow",
author=__author__,
author_email="[email protected]",
license="MIT License",
packages=["paretoflow"],
python_requires=">=3.9",
keywords="optimization",
install_requires=[
"pymoo>=0.6.0",
"numpy>=1.23.2",
"scipy>=1.10.1",
"torch>=2.0.1",
"tqdm>=4.66.5",
],
platforms="any",
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
],
long_description=open("long_description.md", "r").read(),
long_description_content_type="text/markdown",
)