Skip to content

Commit

Permalink
Merge pull request #394 from betatim/metadata
Browse files Browse the repository at this point in the history
Add more details to our setup() command
  • Loading branch information
yuvipanda committed Sep 9, 2018
2 parents a381fc8 + af669d6 commit 1b8e16a
Showing 1 changed file with 27 additions and 2 deletions.
29 changes: 27 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
from setuptools import setup, find_packages
import versioneer


with open('README.md', encoding="utf8") as f:
readme = f.read()

setup(
name='jupyter-repo2docker',
version=versioneer.get_version(),
Expand All @@ -13,9 +17,30 @@
'ruamel.yaml>=0.15',
],
python_requires='>=3.4',
author='Repo2docker contributors',
author_email='yuvipanda@gmail.com',
author='Project Jupyter Contributors',
author_email='jupyter@googlegroups.com',
url='https://repo2docker.readthedocs.io/en/latest/',
project_urls = {
'Documentation': 'https://repo2docker.readthedocs.io',
'Funding': 'https://jupyter.org/about',
'Source': 'https://github.com/jupyter/repo2docker/',
'Tracker': 'https://github.com/jupyter/repo2docker/issues',
},
# this should be a whitespace separated string of keywords, not a list
keywords="reproducible science environments docker",
description = "Repo2docker: Turn code repositories into Jupyter enabled Docker Images",
long_description = readme,
long_description_content_type = 'text/markdown',
license='BSD',
classifiers = [
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
packages=find_packages(),
include_package_data=True,
cmdclass=versioneer.get_cmdclass(),
Expand Down

0 comments on commit 1b8e16a

Please sign in to comment.