-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (41 loc) · 1.62 KB
/
setup.py
File metadata and controls
43 lines (41 loc) · 1.62 KB
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
from distutils.core import setup
setup(
name='dlfs',
packages=['dlfs',
'dlfs.activation_functions',
'dlfs.convolutioners',
'dlfs.layers',
'dlfs.losses',
'dlfs.metrics',
'dlfs.models',
'dlfs.optimizers',
'dlfs.preprocessing'],
version='0.2.3',
license='apache-2.1',
description='implement from scratch (using numpy arrays) a package based on tensorflow architecture which '
'allows to build and train Fully Connected Networks and Convolutional Neural Networks (CNNs).',
author='Pablo',
author_email='pablete.arino@gmail.com',
url='https://github.com/Pabloo22/Deep-Learning-from-Scratch',
download_url='https://github.com/Pabloo22/dlfs/archive/refs/tags/v0.2.3.tar.gz',
keywords=['machine-learning', 'deep-learning', 'backpropagation'], # Keywords that define your package best
install_requires=[
'numpy',
'tqdm',
'patchify',
'tensorly',
'scikit-image'
],
classifiers=[
'Development Status :: 3 - Alpha',
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)