File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed
Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ additional formats.
3131Install using pip:
3232
3333``` bash
34- $ pip install [--user] git+https://github.com/numericalalgorithmsgroup/pypop
34+ $ pip install [--user] NAG-PyPOP
3535```
3636
3737The optional ` --user ` directive instructs pip to install to the users home directory instead of the
Original file line number Diff line number Diff line change 55from setuptools import setup , find_packages
66from versionate import versionate
77
8+ with open ("README.md" , "r" ) as fh :
9+ long_desc = fh .read ()
10+
811setup (
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 = [
You can’t perform that action at this time.
0 commit comments