-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 724 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 724 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
from setuptools import setup, find_packages
setup(
name="pyscsopt",
use_scm_version=True,
setup_requires=['setuptools_scm'],
description="A Python library for self-concordant smooth optimization (Python port of SelfConcordantSmoothOptimization.jl)",
author="Adeyemi Damilare Adeoye",
author_email="",
url="https://github.com/adeyemiadeoye/pyscsopt",
packages=find_packages(),
install_requires=[
"numpy",
"scipy",
"jax",
],
python_requires=">=3.8",
license="Apache-2.0",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)