forked from cvxpy/cvxpylayers
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 646 Bytes
/
setup.py
File metadata and controls
25 lines (21 loc) · 646 Bytes
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="cvxpylayers",
version="0.1.7",
description="Differentiable convex optimization layers",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
"numpy >= 1.15",
"scipy >= 1.1.0",
"diffcp >= 1.0.13",
"cvxpy >= 1.1.0a4"],
license="Apache License, Version 2.0",
url="https://github.com/cvxgrp/cvxpylayers",
classifiers=[
"Programming Language :: Python :: 3",
],
)