-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from imdeepmind/release-v0.1.0-alpha
Release v0.1.0 alpha
- Loading branch information
Showing
2 changed files
with
45 additions
and
41 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 |
---|---|---|
@@ -1,4 +1,8 @@ | ||
[ | ||
{ | ||
"label": "v0.1.0-alpha", | ||
"value": "release-v0.1.0-alpha" | ||
}, | ||
{ | ||
"label": "Latest", | ||
"value": "master" | ||
|
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 |
---|---|---|
|
@@ -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 | ||
) |