|
1 | 1 | from setuptools import setup, find_packages |
2 | 2 | import versioneer |
3 | 3 |
|
| 4 | + |
| 5 | +with open('README.md', encoding="utf8") as f: |
| 6 | + readme = f.read() |
| 7 | + |
4 | 8 | setup( |
5 | 9 | name='jupyter-repo2docker', |
6 | 10 | version=versioneer.get_version(), |
|
13 | 17 | 'ruamel.yaml>=0.15', |
14 | 18 | ], |
15 | 19 | python_requires='>=3.4', |
16 | | - author='Repo2docker contributors', |
17 | | - |
| 20 | + author='Project Jupyter Contributors', |
| 21 | + |
| 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 | + # this should be a whitespace separated string of keywords, not a list |
| 30 | + keywords="reproducible science environments docker", |
| 31 | + description = "Repo2docker: Turn code repositories into Jupyter enabled Docker Images", |
| 32 | + long_description = readme, |
| 33 | + long_description_content_type = 'text/markdown', |
18 | 34 | license='BSD', |
| 35 | + classifiers = [ |
| 36 | + 'Environment :: Console', |
| 37 | + 'Intended Audience :: Developers', |
| 38 | + 'Intended Audience :: System Administrators', |
| 39 | + 'Intended Audience :: Science/Research', |
| 40 | + 'License :: OSI Approved :: BSD License', |
| 41 | + 'Programming Language :: Python', |
| 42 | + 'Programming Language :: Python :: 3', |
| 43 | + ], |
19 | 44 | packages=find_packages(), |
20 | 45 | include_package_data=True, |
21 | 46 | cmdclass=versioneer.get_cmdclass(), |
|
0 commit comments