Skip to content

Commit

Permalink
Add pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
devzhk committed Jun 15, 2021
1 parent 02b5976 commit 49f26c9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@

setuptools.setup(
name="CGDs",
version="0.0.2",
version="0.0.3",
author="Hongkai Zheng",
author_email="[email protected]",
description="A class of Pytorch optimizer",
description="Adaptive Competitive Gradient Descent optimizer",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/devzhk/cgds-package",
packages=setuptools.find_packages(),
package_dir={"": "CGDs"},
packages=setuptools.find_packages(where='CGDs'),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
Expand Down

0 comments on commit 49f26c9

Please sign in to comment.