-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathsetup.py
49 lines (47 loc) · 1.71 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
import setuptools
import nnfs
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setuptools.setup(
name="nnfs",
version=nnfs.__version__,
author="Harrison Kinsley",
author_email="harrison@pythonprogramming.net",
description="Package related to the Neural Networks from Scratch in Python book",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Sentdex/nnfs",
project_urls={
'Homepage': 'https://nnfs.io/',
'Funding': 'https://nnfs.io/',
'Documentation': 'https://nnfs.io/',
},
packages=setuptools.find_packages(),
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Education",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
keywords='nnfs neural network networks from scratch in python',
python_requires='>=3',
install_requires=['numpy'],
entry_points={
"console_scripts": [
"nnfs = nnfs.console.nnfs:main",
]
}
)