Skip to content

Commit b524e7c

Browse files
committed
v0.0.4 - Remove README as long_description
It causes issues on pip install... No beuno
1 parent 66170ed commit b524e7c

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

setup.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,20 @@
11
from distutils.core import setup
22

3-
4-
with open("README.md", "r") as fh:
5-
long_description = fh.read()
6-
73
setup(
84
name='morph-py', # How you named your package folder (MyLib)
95
packages=['morph'], # Chose the same as "name"
106
# Start with a small number and increase it with every change you make
11-
version='0.0.3-alpha',
7+
version='0.0.4-alpha',
128
# Chose a license from here: https://help.github.com/articles/licensing-a-repository
139
license='GNU',
1410
# Give a short description about your library
1511
description='Automate the refinement of your neural network architecture',
16-
long_description=long_description,
1712
author='Stephen Fox', # Type in your name
1813
author_email='stevethecoder34@gmail.com', # Type in your E-Mail
1914
# Provide either the link to your github or to your website
2015
url='https://github.com/stephenjfox/Morph.py',
2116
# I explain this later on
22-
download_url='https://github.com/stephenjfox/Morph.py/archive/v0.0.3.tar.gz',
17+
download_url='https://github.com/stephenjfox/Morph.py/archive/v0.0.4.tar.gz',
2318
keywords=[
2419
'machine learning', 'deep learning', 'nas', 'architecture',
2520
'neural networks'

0 commit comments

Comments
 (0)