Jensen-holm commited on
Commit
adc3f91
·
1 Parent(s): 2cac6be

found the bug in setup.py that was stopping me from getting the package

Browse files
Files changed (1) hide show
  1. setup.py +3 -3
setup.py CHANGED
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
 
3
  setup(
4
  name="numpyneuron",
5
- version="0.4",
6
  author="Jensen Holm",
7
  author_email="jensen.dev.01@gmail.com",
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={"": "numpyneuron"},
14
- packages=find_packages(where="numpyneuron"),
15
  classifiers=[
16
  ],
17
  python_requires=">=3.6",
 
2
 
3
  setup(
4
  name="numpyneuron",
5
+ version="0.5",
6
  author="Jensen Holm",
7
  author_email="jensen.dev.01@gmail.com",
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={"": "."},
14
+ packages=find_packages(),
15
  classifiers=[
16
  ],
17
  python_requires=">=3.6",