Skip to content

Commit

Permalink
removing docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
story645 committed Nov 1, 2022
1 parent ce57eea commit 6c2fa30
Showing 1 changed file with 5 additions and 25 deletions.
30 changes: 5 additions & 25 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,28 +1,8 @@
#!/usr/bin/env python3
""" NumPy is the fundamental package for array computing with Python.
It provides:
- a powerful N-dimensional array object
- sophisticated (broadcasting) functions
- tools for integrating C/C++ and Fortran code
- useful linear algebra, Fourier transform, and random number capabilities
- and much more
Besides its obvious scientific uses, NumPy can also be used as an efficient
multi-dimensional container of generic data. Arbitrary data-types can be
defined. This allows NumPy to seamlessly and speedily integrate with a wide
variety of databases.
All NumPy wheels distributed on PyPI are BSD licensed.
NumPy requires ``pytest`` and ``hypothesis``. Tests can then be run after
installation with::
python -c 'import numpy; numpy.test()'
"""
DOCLINES = (__doc__ or '').split("\n")
Numpy build options can be modified with a site.cfg file.
See site.cfg.example for a template and more information.
"""

import os
from pathlib import Path
Expand Down Expand Up @@ -435,8 +415,8 @@ def setup_package():
name='numpy',
maintainer="NumPy Developers",
maintainer_email="[email protected]",
description=DOCLINES[0],
long_description= Path("README.md").read_text(encoding="utf-8"),
description="Fundamental package for array computing in Python",
long_description=Path("README.md").read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
url="https://www.numpy.org",
author="Travis E. Oliphant et al.",
Expand Down

0 comments on commit 6c2fa30

Please sign in to comment.