Skip to content

Commit

Permalink
Merge pull request #14 from rcthomas/setuptools
Browse files Browse the repository at this point in the history
Setuptools, remove requirements.txt
  • Loading branch information
rcthomas authored May 13, 2022
2 parents be59a53 + d83685f commit 022359b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
3 changes: 0 additions & 3 deletions requirements.txt

This file was deleted.

26 changes: 15 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
#!/usr/bin/env python

from distutils.core import setup
from setuptools import setup

setup(
name='jupyterhub-announcement',
version='0.7.0',
description='JupyterHub Announcement Service',
author='R. C. Thomas, François Tessier',
author_email='[email protected]',
packages=['jupyterhub_announcement'],
data_files=[("share/jupyterhub/announcement/templates",
["templates/index.html"])]
author='R. C. Thomas, François Tessier',
author_email='[email protected]',
data_files=[
("share/jupyterhub/announcement/templates", ["templates/index.html"])
],
description='JupyterHub Announcement Service',
install_requires=[
"aiofiles",
"html-sanitizer",
"jupyterhub",
],
name='jupyterhub-announcement',
packages=['jupyterhub_announcement'],
version='0.8.0.dev',
)

0 comments on commit 022359b

Please sign in to comment.