-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
12 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
export PYTHON_CMD=python | ||
export DIST_DIR=dist | ||
rm ${DIST_DIR}/* | ||
${PYTHON_CMD} setup.py sdist bdist_wheel | ||
${PYTHON_CMD} -m twine upload ${DIST_DIR}/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,9 +9,9 @@ | |
setup( | ||
name='xitorch', | ||
version=version["get_version"](), | ||
description='Pytorch-based linear algebra library for large matrix', | ||
url='https://github.com/mfkasim91/xitorch', | ||
author='mfkasim91', | ||
description='Differentiable scientific computing library', | ||
url='https://xitorch.readthedocs.io/', | ||
author='mfkasim1', | ||
author_email='[email protected]', | ||
license='MIT', | ||
packages=find_packages(), | ||
|
@@ -23,16 +23,15 @@ | |
"torch>=1.5", | ||
], | ||
classifiers=[ | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Science/Research", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Physics", | ||
"Topic :: Scientific/Engineering :: Mathematics", | ||
"License :: OSI Approved :: MIT License", | ||
"License :: OSI Approved :: BSD License", | ||
|
||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
], | ||
keywords="project library linear-algebra autograd", | ||
keywords="project library linear-algebra autograd functionals", | ||
zip_safe=False | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters