Skip to content

Commit

Permalink
0.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mfkasim1 committed Oct 2, 2020
1 parent d236024 commit 126bd50
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
5 changes: 5 additions & 0 deletions release.sh
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}/*
11 changes: 5 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand All @@ -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
)
4 changes: 2 additions & 2 deletions xitorch/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

MAJOR = 0
MINOR = 1
MICRO = 0
ISRELEASED = False
MICRO = 1
ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)

# Return the git revision as a string
Expand Down

0 comments on commit 126bd50

Please sign in to comment.