Skip to content

Commit

Permalink
Merge pull request #24 from imdeepmind/release-v0.1.0-alpha
Browse files Browse the repository at this point in the history
Release v0.1.0 alpha
  • Loading branch information
imdeepmind authored Jun 16, 2020
2 parents 916f35f + 4fb9872 commit 5c32c04
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 41 deletions.
4 changes: 4 additions & 0 deletions docs/versions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
[
{
"label": "v0.1.0-alpha",
"value": "release-v0.1.0-alpha"
},
{
"label": "Latest",
"value": "master"
Expand Down
82 changes: 41 additions & 41 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,50 +3,50 @@
long_description = """
NeuralPy
NeuralPy is a Keras like, machine learning library that works on top of PyTorch written purely in Python. It is simple, easy to use library, cross-compatible with PyTorch models, suitable for all kinds of machine learning experiments, learning, research, etc.
NeuralPy is a Keras like, deep learning library that works on top of PyTorch written purely in Python. It is simple, easy to use library, cross-compatible with PyTorch models, suitable for all kinds of machine learning experiments, learning, research, etc.
Check the docs for more info: https://neuralpy.imdeepmind.com/
"""

setup(
name="neuralpy-torch",
version="0.0.4",
description="A Keras like deep learning library works on top of PyTorch",
long_description=long_description,
url="https://github.com/imdeepmind/NeuralPy",
author="Abhishek Chatterjee",
author_email="[email protected]",
license="MIT",
project_urls={
"Bug Tracker": "https://github.com/imdeepmind/NeuralPy/issues",
"Documentation": "https://neuralpy.imdeepmind.com/",
"Source Code": "https://github.com/imdeepmind/NeuralPy",
name="neuralpy-torch",
version="0.1.0",
description="A Keras like deep learning library works on top of PyTorch",
long_description=long_description,
url="https://neuralpy.imdeepmind.com/",
author="Abhishek Chatterjee",
author_email="[email protected]",
license="MIT",
project_urls={
"Bug Tracker": "https://github.com/imdeepmind/NeuralPy/issues",
"Documentation": "https://neuralpy.imdeepmind.com/",
"Source Code": "https://github.com/imdeepmind/NeuralPy",
},
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7"
],
packages=[
"neuralpy",
"neuralpy.activation_functions",
"neuralpy.layers",
"neuralpy.loss_functions",
"neuralpy.models",
"neuralpy.optimizer",
"neuralpy.regulariziers"
],
install_requires=["torch"],
extras_require={
'tests': [
"pytest",
"pytest-cov"
]
},
include_package_data=True
)
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7"
],
packages=[
"neuralpy",
"neuralpy.activation_functions",
"neuralpy.layers",
"neuralpy.loss_functions",
"neuralpy.models",
"neuralpy.optimizer",
"neuralpy.regulariziers"
],
install_requires=["torch"],
extras_require={
'tests': [
"pytest",
"pytest-cov"
]
},
include_package_data=True
)

0 comments on commit 5c32c04

Please sign in to comment.