Jensen-holm commited on
Commit
f7ea12e
Β·
1 Parent(s): e53a40c

stuck on getting this package to work on pypi

Browse files
{nn β†’ numpyneuron}/__init__.py RENAMED
File without changes
{nn β†’ numpyneuron}/activation.py RENAMED
File without changes
{nn β†’ numpyneuron}/loss.py RENAMED
File without changes
{nn β†’ numpyneuron}/nn.py RENAMED
File without changes
setup.py CHANGED
@@ -1,8 +1,8 @@
1
  from setuptools import setup, find_packages
2
 
3
  setup(
4
- name="numpy_neuron",
5
- version="1.1",
6
  author="Jensen Holm",
7
  author_email="[email protected]",
8
  description="Simple, lightweight neural network framework built in numpy",
@@ -10,8 +10,8 @@ setup(
10
  long_description_content_type="text/markdown",
11
  url="https://github.com/Jensen-holm/Numpy-Neuron",
12
  project_urls={"Bug Tracker": "https://github.com/Jensen-holm/Numpy-Neuron/issues"},
13
- package_dir={"": "nn"},
14
- packages=find_packages(where="nn"),
15
  classifiers=[
16
  "Programming Language :: Python :: 3",
17
  "License :: OSI Approved :: MIT License",
 
1
  from setuptools import setup, find_packages
2
 
3
  setup(
4
+ name="numpyneuron",
5
+ version="0.2",
6
  author="Jensen Holm",
7
  author_email="[email protected]",
8
  description="Simple, lightweight neural network framework built in numpy",
 
10
  long_description_content_type="text/markdown",
11
  url="https://github.com/Jensen-holm/Numpy-Neuron",
12
  project_urls={"Bug Tracker": "https://github.com/Jensen-holm/Numpy-Neuron/issues"},
13
+ package_dir={"": "numpyneuron"},
14
+ packages=find_packages(where="numpyneuron"),
15
  classifiers=[
16
  "Programming Language :: Python :: 3",
17
  "License :: OSI Approved :: MIT License",