Skip to content

Commit 2ee27c8

Browse files
committed
Get Ready for PyPI
1 parent de2c9f3 commit 2ee27c8

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ additional formats.
3131
Install using pip:
3232

3333
```bash
34-
$ pip install [--user] git+https://github.com/numericalalgorithmsgroup/pypop
34+
$ pip install [--user] NAG-PyPOP
3535
```
3636

3737
The optional `--user` directive instructs pip to install to the users home directory instead of the

setup.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,23 @@
55
from setuptools import setup, find_packages
66
from versionate import versionate
77

8+
with open("README.md", "r") as fh:
9+
long_desc = fh.read()
10+
811
setup(
9-
name="pypop",
12+
name="NAG-PyPOP",
1013
version=versionate(),
1114
url="https://github.com/numericalalgorithmsgroup/pypop.git",
1215
author="Numerical Algorithms Group",
1316
author_email="phil.tooley@nag.co.uk",
1417
description="Python notebook support for POP metrics and reports",
18+
long_description=long_desc,
19+
long_description_content_type="text/markdown",
20+
classifiers=[
21+
"Programming Language :: Python :: 3",
22+
"License :: OSI Approved :: BSD License",
23+
"Operating System :: OS Independent",
24+
],
1525
packages=find_packages(),
1626
python_requires=">=3.6",
1727
install_requires=[

0 commit comments

Comments
 (0)