Skip to content

Commit 34dcc05

Browse files
committed
Overwrite bad packaging
1 parent b524e7c commit 34dcc05

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
from distutils.core import setup
2+
from setuptools import find_packages
23

34
setup(
45
name='morph-py', # How you named your package folder (MyLib)
5-
packages=['morph'], # Chose the same as "name"
6+
packages=find_packages(), # Chose the same as "name"
67
# Start with a small number and increase it with every change you make
7-
version='0.0.4-alpha',
8+
version='0.0.5-alpha',
89
# Chose a license from here: https://help.github.com/articles/licensing-a-repository
910
license='GNU',
1011
# Give a short description about your library
@@ -14,7 +15,7 @@
1415
# Provide either the link to your github or to your website
1516
url='https://github.com/stephenjfox/Morph.py',
1617
# I explain this later on
17-
download_url='https://github.com/stephenjfox/Morph.py/archive/v0.0.4.tar.gz',
18+
download_url='https://github.com/stephenjfox/Morph.py/archive/v0.0.5.tar.gz',
1819
keywords=[
1920
'machine learning', 'deep learning', 'nas', 'architecture',
2021
'neural networks'

0 commit comments

Comments
 (0)