-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 804 Bytes
/
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
from setuptools import setup
VERSION = 'v0.1.0'
readme_name = "readme.md"
with open(readme_name) as fh:
long_description = fh.read()
setup(
name="pytosolver",
version=VERSION,
description="A generic framework for writing linear optimization problems in Python.",
long_description=long_description,
long_description_content_type="text/x-rst",
keywords=["Modeling Framework", "Linear Programming", "Linear Optimization", "Operations Research"],
author="Guilherme Freitas Coelho",
author_email="[email protected]",
url="https://github.com/guifcoelho/pytosolver",
python_requires=">=3.10",
packages=[
"pytosolver", "pytosolver.solvers",
],
include_package_data=True,
install_requires=[
"highspy==1.7.2",
"numpy"
],
)