Spaces:
Sleeping
Sleeping
File size: 634 Bytes
75481dd f7ea12e 2cac6be 75481dd f7ea12e 75481dd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
from setuptools import setup, find_packages
setup(
name="numpyneuron",
version="0.4",
author="Jensen Holm",
author_email="[email protected]",
description="Simple, lightweight neural network framework built in numpy",
long_description=open("about_package.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/Jensen-holm/Numpy-Neuron",
project_urls={"Bug Tracker": "https://github.com/Jensen-holm/Numpy-Neuron/issues"},
package_dir={"": "numpyneuron"},
packages=find_packages(where="numpyneuron"),
classifiers=[
],
python_requires=">=3.6",
)
|