-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
60 lines (56 loc) · 2.04 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
from setuptools import setup
long_description = """
NeuralPy
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://www.neuralpy.xyz/
"""
setup(
name="neuralpy-torch",
version="0.2.0",
description="A Keras like deep learning library works on top of PyTorch",
long_description=long_description,
url="https://www.neuralpy.xyz/",
author="Abhishek Chatterjee",
author_email="abhishek.chatterjee97@protonmail.com",
license="MIT",
project_urls={
"Bug Tracker": "https://github.com/imdeepmind/NeuralPy/issues",
"Documentation": "https://www.neuralpy.xyz/",
"Source Code": "https://github.com/imdeepmind/NeuralPy",
},
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",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
packages=[
"neuralpy",
"neuralpy.layers",
"neuralpy.layers.activation_functions",
"neuralpy.layers.convolutional",
"neuralpy.layers.linear",
"neuralpy.layers.normalization",
"neuralpy.layers.other",
"neuralpy.layers.pooling",
"neuralpy.layers.recurrent",
"neuralpy.layers.regularizers",
"neuralpy.layers.sparse",
"neuralpy.loss_functions",
"neuralpy.models",
"neuralpy.optimizer",
"neuralpy.callbacks",
],
install_requires=["torch"],
extras_require={"tests": ["pytest", "pytest-cov", "flake8", "black"]},
include_package_data=True,
)