Skip to content

Update the setup.py #64

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Oct 26, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 27 additions & 23 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,38 +5,42 @@
#
# License: BSD 3 clause

from setuptools import setup, find_packages
import watermark
from textwrap import dedent

from setuptools import find_packages, setup

from watermark import __version__ as VERSION
# Single-source version using method 6 from
# https://packaging.python.org/guides/single-sourcing-package-version/
VERSION = watermark.__version__

# Also see settings in setup.cfg
setup(
name='watermark',
name="watermark",
version=VERSION,
license='newBSD',
description=('IPython magic function to print date/time stamps and'
'various system information.'),
author='Sebastian Raschka',
author_email='[email protected]',
url='https://github.com/rasbt/watermark',
license="newBSD",
description=(
"IPython magic function to print date/time stamps and"
"various system information."
),
author="Sebastian Raschka",
author_email="[email protected]",
url="https://github.com/rasbt/watermark",
packages=find_packages(exclude=[]),
install_requires=['ipython'],
long_description="""
An IPython magic extension for printing date and time stamps, version numbers,
and hardware information.
install_requires=["ipython"],
long_description=dedent(
"""\
An IPython magic extension for printing date and time stamps, version
numbers, and hardware information.

Contact
=============
If you have any questions or comments about watermark,
please feel free to contact me via
email: [email protected]
Contact
=============
If you have any questions or comments about watermark,
please feel free to contact me via
email: [email protected]

This project is hosted at https://github.com/rasbt/watermark
This project is hosted at https://github.com/rasbt/watermark

The documentation can be found at
https://github.com/rasbt/watermark/blob/master/README.md
"""
The documentation can be found at
https://github.com/rasbt/watermark/blob/master/README.md"""
),
)