-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
50 lines (47 loc) · 1.29 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
import os
import codecs
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="flopt",
packages=find_packages(),
package_data={
"flopt": ["flopt.config"],
},
include_package_data=True,
version="0.5.6",
license="MIT",
install_requires=[
"networkx==3.2.*",
"numpy",
"sympy",
"matplotlib",
"pulp",
"optuna",
"hyperopt",
"cvxopt",
"amplify",
"pytest",
"scipy",
"scikit-learn",
"dill",
"pooch",
"timeout_decorator",
"colorlog",
"gurobipy",
],
author="nariaki tateiwa",
author_email="nariaki3551@gmail.com",
url="https://flopt.readthedocs.io/en/latest/index.html",
description="A python Non-Linear Programming API with Heuristic approach",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="optimization nonliear search heuristics algorithm",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)