Skip to content

Commit

Permalink
Modifying setup.py with descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
bjherger committed May 26, 2018
1 parent 8cfd47a commit aefaf2f
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
from setuptools import setup
from setuptools import setup, find_packages

# Set up requirements

with open("README.md", "r") as fh:
long_description = fh.read()

with open('requirements.txt') as f:
required = f.read().splitlines()

setup(
name='keras-pandas',
description='test',
version='1.0.0', # Update the version number for new releases
description='Easy and rapid deep learning',
long_description=long_description,
long_description_content_type='text/markdown',
version='1.1.0',
url='https://github.com/bjherger/keras-pandas',
author='Brendan Herger',
author_email='13herger@gmail.com',
license='MIT',
packages=['keras_pandas'],
packages=find_packages(),
install_requires=required,
zip_safe=False
)
Expand Down

0 comments on commit aefaf2f

Please sign in to comment.