-
Notifications
You must be signed in to change notification settings - Fork 362
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #394 from betatim/metadata
Add more details to our setup() command
- Loading branch information
Showing
1 changed file
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(), | ||
|
@@ -13,9 +17,30 @@ | |
'ruamel.yaml>=0.15', | ||
], | ||
python_requires='>=3.4', | ||
author='Repo2docker contributors', | ||
author_email='[email protected]', | ||
author='Project Jupyter Contributors', | ||
author_email='[email protected]', | ||
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(), | ||
|