-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 831 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 831 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
26
27
import setuptools
with open("README.md", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="pygranso",
version="2.0.0",
author="Tim Mitchell and Buyun Liang",
author_email="[email protected], [email protected]",
description="PyGRANSO: A PyTorch-enabled port of GRANSO with auto-differentiation",
keywords=[
"deep learning",
"machine learning",
"optimization software",
"mathematical software",
],
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sun-umn/PyGRANSO",
project_urls={
"Bug Tracker": "https://github.com/sun-umn/PyGRANSO/issues",
},
package_dir={"": "."},
packages=setuptools.find_packages(where="."),
python_requires=">=3.9",
)