Skip to content

Commit f725426

Browse files
committed
Add more details to our setup command
1 parent a381fc8 commit f725426

File tree

1 file changed

+25
-2
lines changed

1 file changed

+25
-2
lines changed

setup.py

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
from setuptools import setup, find_packages
22
import versioneer
33

4+
5+
with open('README.md', encoding="utf8") as f:
6+
readme = f.read()
7+
48
setup(
59
name='jupyter-repo2docker',
610
version=versioneer.get_version(),
@@ -13,9 +17,28 @@
1317
'ruamel.yaml>=0.15',
1418
],
1519
python_requires='>=3.4',
16-
author='Repo2docker contributors',
17-
author_email='[email protected]',
20+
author='Project Jupyter Contributors',
21+
author_email='[email protected]',
22+
url='https://repo2docker.readthedocs.io/en/latest/',
23+
project_urls = {
24+
'Documentation': 'https://repo2docker.readthedocs.io',
25+
'Funding': 'https://jupyter.org/about',
26+
'Source': 'https://github.com/jupyter/repo2docker/',
27+
'Tracker': 'https://github.com/jupyter/repo2docker/issues',
28+
},
29+
description = "Repo2docker: Turn git repositories into Jupyter enabled Docker Images",
30+
long_description = readme,
31+
long_description_content_type = 'text/markdown',
1832
license='BSD',
33+
classifiers = [
34+
'Environment :: Console',
35+
'Intended Audience :: Developers',
36+
'Intended Audience :: System Administrators',
37+
'Intended Audience :: Science/Research',
38+
'License :: OSI Approved :: BSD License',
39+
'Programming Language :: Python',
40+
'Programming Language :: Python :: 3',
41+
],
1942
packages=find_packages(),
2043
include_package_data=True,
2144
cmdclass=versioneer.get_cmdclass(),

0 commit comments

Comments
 (0)