##// END OF EJS Templates
Add some extra metadata for PyPI (in the sidebar)...
Matthias Bussonnier -
Show More
@@ -36,10 +36,6 b' isfile = os.path.isfile'
36 36 pjoin = os.path.join
37 37 repo_root = os.path.dirname(os.path.abspath(__file__))
38 38
39 def oscmd(s):
40 print(">", s)
41 os.system(s)
42
43 39 def execfile(fname, globs, locs=None):
44 40 locs = locs or globs
45 41 exec(compile(open(fname).read(), fname, "exec"), globs, locs)
@@ -78,6 +74,12 b' setup_args = dict('
78 74 keywords = keywords,
79 75 classifiers = classifiers,
80 76 cmdclass = {'install_data': install_data_ext},
77 project_urls={
78 'Documentation': 'https://ipython.readthedocs.io/',
79 'Funding' : 'https://numfocus.org/',
80 'Source' : 'https://github.com/ipython/ipython',
81 'Tracker' : 'https://github.com/ipython/ipython/issues',
82 }
81 83 )
82 84
83 85
General Comments 0
You need to be logged in to leave comments. Login now