-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 924 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 924 Bytes
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
from distutils.core import setup
with open("README.md", 'r') as file:
longDiscription = file.read()
setup(
name = 'SimpleNode',
packages = ['SimpleNode'],
version = '0.32',
license='MIT',
description = 'Package for working with Neural Networks for small projects',
long_description_content_type = "text/markdown",
long_description = longDiscription,
author = 'Artyom Yesayan',
author_email = 'yesart8@gmail.com',
url = 'https://github.com/Rkaid0/SimpleNode',
download_url = 'https://github.com/Rkaid0/SimpleNode/archive/refs/tags/v_0.1.tar.gz',
keywords = ['NeuralNetwork', 'GradientDescent', 'AI'],
install_requires=[
'numpy'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.10',
],
)